mirror of
https://github.com/appen-isen/projet-cal.git
synced 2026-01-18 16:47:38 +01:00
18 lines
489 B
YAML
18 lines
489 B
YAML
version: "3.8"
|
|
|
|
services:
|
|
calendrier-avent:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
container_name: calendrier-avent-isen
|
|
ports:
|
|
- "8080:8080"
|
|
environment:
|
|
- FILE_NAME=date_link.txt
|
|
- GIN_MODE=release
|
|
volumes:
|
|
# Mount date_link.txt so you can update it without rebuilding
|
|
- ./backend/date_link.txt:/app/backend/date_link.txt:ro
|
|
restart: unless-stopped
|