feat : add Docker prodcution deployment
Some checks failed
Auto Tag Develop / tag (push) Has been cancelled

This commit is contained in:
Matthieu
2026-04-01 11:00:10 +02:00
parent e480e2821b
commit 21e050ce29
13 changed files with 767 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
services:
app:
image: gitea.malio.fr/malio/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