2026-04-17 15:41:20 +02:00
|
|
|
services:
|
|
|
|
|
kochwas:
|
2026-04-17 15:54:34 +02:00
|
|
|
# Image wird via Gitea Actions gebaut und in die Gitea-Container-Registry gepusht.
|
|
|
|
|
# Tag-Override per Umgebungsvariable: KOCHWAS_TAG=sha-abcd1234 docker compose pull
|
|
|
|
|
image: gitea.siegeln.net/claude/kochwas:${KOCHWAS_TAG:-latest}
|
|
|
|
|
pull_policy: always
|
2026-04-17 15:41:20 +02:00
|
|
|
ports:
|
|
|
|
|
- '3000:3000'
|
|
|
|
|
volumes:
|
|
|
|
|
- ./data:/data
|
|
|
|
|
environment:
|
|
|
|
|
- DATABASE_PATH=/data/kochwas.db
|
|
|
|
|
- IMAGE_DIR=/data/images
|
|
|
|
|
- SEARXNG_URL=http://searxng:8080
|
|
|
|
|
- NODE_ENV=production
|
|
|
|
|
depends_on:
|
|
|
|
|
- searxng
|
|
|
|
|
restart: unless-stopped
|
|
|
|
|
|
|
|
|
|
searxng:
|
|
|
|
|
image: searxng/searxng:latest
|
|
|
|
|
volumes:
|
|
|
|
|
- ./searxng:/etc/searxng
|
|
|
|
|
environment:
|
|
|
|
|
- BASE_URL=http://searxng:8080/
|
|
|
|
|
- INSTANCE_NAME=kochwas-search
|
|
|
|
|
restart: unless-stopped
|