Files
Lesstime/deploy/docker/docker-compose.prod.yml
Matthieu cbe71a1f32
All checks were successful
Auto Tag Develop / tag (push) Successful in 5s
fix : use malio-dev registry namespace instead of malio
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-01 11:24:26 +02:00

14 lines
368 B
YAML

services:
app:
image: gitea.malio.fr/malio-dev/lesstime:${LESSTIME_IMAGE_TAG:-latest}
container_name: lesstime-app
env_file: .env
ports:
- "8080:80"
volumes:
- ./config/jwt:/var/www/html/config/jwt:ro
- ./uploads:/var/www/html/var/uploads
extra_hosts:
- "host.docker.internal:host-gateway"
restart: unless-stopped