Persist var/log/ via named volume coltura_logs so logs survive container restarts. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
17 lines
390 B
YAML
17 lines
390 B
YAML
services:
|
|
app:
|
|
image: gitea.malio.fr/malio-dev/coltura:${COLTURA_IMAGE_TAG:-latest}
|
|
container_name: coltura-app
|
|
env_file: .env
|
|
ports:
|
|
- "8086:80"
|
|
volumes:
|
|
- ./config/jwt:/var/www/html/config/jwt:ro
|
|
- coltura_logs:/var/www/html/var/log
|
|
extra_hosts:
|
|
- "host.docker.internal:host-gateway"
|
|
restart: unless-stopped
|
|
|
|
volumes:
|
|
coltura_logs:
|