1.0.0+14.0.1 release

This commit is contained in:
Nick Sellen 2024-03-29 15:50:48 +00:00
parent 30df8b46d0
commit 7937f686f2
Signed by: nicksellen
GPG Key ID: 7C3A275C0DC2EFA1
2 changed files with 33 additions and 1 deletions

View File

@ -102,7 +102,7 @@ services:
start_period: 45s
deploy:
labels:
- "coop-cloud.${STACK_NAME}.version=0.1.10+13.0.0"
- "coop-cloud.${STACK_NAME}.version=1.0.0+14.0.1"
- "backupbot.backup=true"
- "backupbot.backup.path=/app/uploads"

32
release/1.0.0+14.0.1 Normal file
View File

@ -0,0 +1,32 @@
Major upgrade because this switches to new set of docker images with new python version.
Full release info available here: https://codeberg.org/karrot/karrot/releases/tag/v14.0.1
## Fix to uploaded file permissions
We now run the container as non-root user which means the file permissions need updating.
After you deployment you can fix that by running:
```
abra app cmd <domain> app fix-permissions --user root
```
(Note: we need `--user root` there, as we need to be `root` in the container to change the permissions)
## geoip changes
Now the geoip update server is run using an additional compose file config, so if you are using geoip with a maxmind account, modify your config to include:
```
COMPOSE_FILE="compose.yml"
COMPOSE_FILE="$COMPOSE_FILE:compose.geoip.yml"
MAXMIND_ACCOUNT_ID=youraccountid
SECRET_MAXMIND_LICENSE_KEY_VERSION=v1
```
And ensure you have the `maxmind_license_key` secret set, which you can do with:
```
abra app secret insert <domain> maxmind_license_key v1 <key>
```