karrot/release/1.0.0+14.0.1

33 lines
1009 B
Groff

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>
```