21 Commits

Author SHA1 Message Date
32354ad984 Increase start_period to allow slow migrations
All checks were successful
continuous-integration/drone/tag Build is passing
2025-12-30 12:38:13 +00:00
8b1aa49240 Update to Karrot v17.1.0
All checks were successful
continuous-integration/drone/tag Build is passing
2025-12-24 22:42:57 +00:00
047d27a969 Update to karrot v17.0.0
All checks were successful
continuous-integration/drone/tag Build is passing
2025-12-21 00:27:19 +00:00
81dd82ba86 Upgrade to Karrot v16.2.0
All checks were successful
continuous-integration/drone/tag Build is passing
2025-04-10 00:01:54 +01:00
ec767e3eea Update to Karrot v16.1.0
All checks were successful
continuous-integration/drone/tag Build is passing
2025-04-01 23:21:21 +01:00
5b3506ff19 Fix healthcheck URL
All checks were successful
continuous-integration/drone/tag Build is passing
2025-01-30 19:05:44 +00:00
909eab8458 Update to karrot v16.0.0
All checks were successful
continuous-integration/drone/tag Build is passing
2025-01-30 18:44:11 +00:00
b60feecd68 Update .drone.yml 2025-01-08 10:09:13 -08:00
3ad265ce56 Update to karrot v15.2.0
All checks were successful
continuous-integration/drone/tag Build is passing
- includes plugins
2024-06-24 23:45:55 +01:00
798e4ea45d Update to karrot v15.1.1
All checks were successful
continuous-integration/drone/tag Build is passing
2024-05-23 11:01:52 +01:00
5b91dbe2c7 Update to karrot v15.0.0
All checks were successful
continuous-integration/drone/tag Build is passing
2024-05-22 15:41:05 +01:00
ece4d2e428 Update to karrot v14.1.0
All checks were successful
continuous-integration/drone/tag Build is passing
2024-04-04 23:53:03 +01:00
7e028c6c34 Update release doc to fix --user arg position 2024-04-01 20:21:13 +01:00
7964281022 Update readme to show backups are configured 2024-03-29 17:13:26 +00:00
1839764a33 Update readme 2024-03-29 16:30:08 +00:00
ad652a2815 Don't include geoip volume in main compose.yml 2024-03-29 16:24:44 +00:00
036e5b33eb More docs in .env.sample 2024-03-29 16:20:09 +00:00
7937f686f2 1.0.0+14.0.1 release 2024-03-29 15:58:20 +00:00
30df8b46d0 Fix geoip override config 2024-03-25 22:36:26 +00:00
1f46da81a0 Add permission fixing cmd
Since we run karrot as karrot user now, the uploads need to be
owned by that user.
2024-03-25 22:36:03 +00:00
83e1c78b6a Merge pull request 'Use updated docker images' (#10) from change/use-new-docker-images into main
Reviewed-on: #10
2024-03-25 18:48:20 +00:00
7 changed files with 80 additions and 20 deletions

View File

@ -10,7 +10,7 @@ steps:
from_secret: drone_abra-bot_token
fork: true
repositories:
- coop-cloud/auto-recipes-catalogue-json
- toolshed/auto-recipes-catalogue-json
trigger:
event: tag

View File

@ -1,5 +1,8 @@
TYPE=karrot
# For more information about these options
# see https://docs.karrot.world/self-host/options
DOMAIN=karrot.example.com
COMPOSE_FILE="compose.yml"
@ -42,6 +45,8 @@ EMAIL_BACKEND=console
# For web push set this, and the vapid private key secret
# You need to generate a valid vapid keypair
# You can generate one by running:
# docker run --rm codeberg.org/karrot/generate-vapid-keypair
#VAPID_PUBLIC_KEY=
#VAPID_ADMIN_EMAIL=
#SECRET_VAPID_PRIVATE_KEY_VERSION=v1
@ -51,6 +56,7 @@ EMAIL_BACKEND=console
#MEET_LIVEKIT_API_KEY=
#SECRET_LIVEKIT_API_SECRET_VERSION=v1
# You probably don't need to touch these
SITE_URL=https://${DOMAIN}
LETS_ENCRYPT_ENV=production
CSRF_TRUSTED_ORIGINS=${SITE_URL}

View File

@ -6,9 +6,9 @@ Karrot is a free and open-source tool for grassroots initiatives and groups of p
* **Category**: Utilities
* **Status**: 3, stable
* **Image**: [`karrot-backend`](https://hub.docker.com/r/vlafvlaf/karrot_backend),4,upstream
* **Image**: [`karrot-frontend`](https://codeberg.org/karrot/-/packages/container/karrot-backend)/[`karrot-frontend`](https://codeberg.org/karrot/-/packages/container/karrot-backend),4,upstream
* **Healthcheck**: Yes
* **Backups**: No
* **Backups**: Yes
* **Email**: Yes
* **Tests**: No
* **SSO**: No
@ -22,6 +22,8 @@ Karrot is a free and open-source tool for grassroots initiatives and groups of p
3. `abra app config <karrot app name>`
4. `abra app deploy <karrot app name>`
See [Karrot Self-hosting docs](https://docs.karrot.world/self-host/coop-cloud/getting-started) for more information.
## Configuration options
`MAXMIND_ACCOUNT_ID` and `MAXMIND_ACCOUNT_KEY` are API credentials from maxmind.com. You need an account there to get GeoIP data for Karrot.

19
abra.sh
View File

@ -1,2 +1,17 @@
export NGINX_CONFIG_VERSION=v23
export GEOIP_CONFIG_VERSION=v1
fix-permissions() {
if [ "$(whoami)" != "root" ]; then
echo "error: you must be root to fix permissions"
echo "Try adding '--user root'"
exit 1
fi
echo "Fixing permissions"
echo "Making karrot the owner of uploads"
chown -R karrot:karrot /app/uploads
echo "Making karrot the owner of plugins"
chown -R karrot:karrot /app/plugins
echo "Done"
}

View File

@ -4,7 +4,6 @@ services:
app:
volumes:
- "geoip_data:/var/lib/GeoIP"
- "app_data:/app/uploads"
worker:
volumes:
@ -17,10 +16,10 @@ services:
secrets:
- maxmind_license_key
environment:
- GEOIPUPDATE_EDITION_IDS=GeoLite2-City GeoLite2-Country
- GEOIPUPDATE_ACCOUNT_ID=${MAXMIND_ACCOUNT_ID:-}
- GEOIPUPDATE_LICENSE_KEY_FILE=/run/secrets/maxmind_license_key
- GEOIPUPDATE_FREQUENCY=72
- "GEOIPUPDATE_EDITION_IDS=GeoLite2-City GeoLite2-Country"
- "GEOIPUPDATE_ACCOUNT_ID=${MAXMIND_ACCOUNT_ID:-}"
- "GEOIPUPDATE_LICENSE_KEY_FILE=/run/secrets/maxmind_license_key"
- "GEOIPUPDATE_FREQUENCY=72"
secrets:
maxmind_license_key:

View File

@ -2,7 +2,7 @@ version: "3.8"
services:
web:
image: "codeberg.org/karrot/karrot-frontend:v14.0.1"
image: "codeberg.org/karrot/karrot-frontend:v17.1.0"
depends_on:
- app
environment:
@ -35,7 +35,7 @@ services:
- "traefik.http.routers.${STACK_NAME}.tls.certresolver=${LETS_ENCRYPT_ENV}"
app:
image: "codeberg.org/karrot/karrot-backend:v14.0.1"
image: "codeberg.org/karrot/karrot-backend:v17.1.0"
networks:
- internal
depends_on:
@ -48,9 +48,10 @@ services:
- vapid_private_key
- livekit_api_secret
volumes:
- "geoip_data:/var/lib/GeoIP"
- "app_data:/app/uploads/"
- "plugins_data:/app/plugins/"
environment:
- ADMIN_EMAILS
- CSRF_TRUSTED_ORIGINS
- DATABASE_CONN_MAX_AGE
- DATABASE_HOST=db
@ -73,6 +74,7 @@ services:
- POSTAL_API_URL
- POSTAL_WEBHOOK_KEY
- PROXY_DISCOURSE_URL
- PLUGIN_DIR=/app/plugins/
- REDIS_DB=0
- REDIS_HOST=redis
- REDIS_PORT=6379
@ -95,23 +97,22 @@ services:
- MIGRATE=yes
command: server
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8000/api/config/"]
test: ["CMD", "curl", "-f", "http://localhost:8000/api/settings/"]
interval: 10s
timeout: 3s
retries: 3
start_period: 45s
# sometimes migrations can take their time..
start_period: 600s
deploy:
labels:
- "coop-cloud.${STACK_NAME}.version=0.1.10+13.0.0"
- "coop-cloud.${STACK_NAME}.version=3.1.1+17.1.0"
- "backupbot.backup=true"
- "backupbot.backup.path=/app/uploads"
worker:
image: "codeberg.org/karrot/karrot-backend:v14.0.1"
image: "codeberg.org/karrot/karrot-backend:v17.1.0"
depends_on:
- app
volumes:
- "geoip_data:/var/lib/GeoIP"
networks:
- internal
secrets:
@ -120,7 +121,11 @@ services:
- smtp_password
- vapid_private_key
- livekit_api_secret
volumes:
- "app_data:/app/uploads/"
- "plugins_data:/app/plugins/"
environment:
- ADMIN_EMAILS
- DATABASE_CONN_MAX_AGE
- DATABASE_HOST=db
- DATABASE_NAME=karrot
@ -136,6 +141,7 @@ services:
- POSTAL_API_KEY
- POSTAL_API_URL
- POSTAL_WEBHOOK_KEY
- PLUGIN_DIR=/app/plugins/
- REDIS_DB=0
- REDIS_HOST=redis
- REDIS_PORT=6379
@ -212,8 +218,8 @@ secrets:
name: ${STACK_NAME}_livekit_api_secret_${SECRET_LIVEKIT_API_SECRET_VERSION}
volumes:
geoip_data:
app_data:
plugins_data:
postgres_data:
redis_data:

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 --user root <domain> app fix-permissions
```
(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>
```