Files
Coltura/infra/prod/docker-compose.prod.yml
Matthieu 389bfbef13
Some checks failed
Auto Tag Develop / tag (push) Has been cancelled
refactor(infra) : align prod setup with Lesstime pattern
Single container with supervisord (Nginx + PHP-FPM), 3-stage
Dockerfile build, pre-built image from registry, port 8086.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-07 14:53:18 +02:00

13 lines
321 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
extra_hosts:
- "host.docker.internal:host-gateway"
restart: unless-stopped