mirror of
https://github.com/ets-cfuhrman-pfe/EvalueTonSavoir.git
synced 2025-08-11 21:23:54 -04:00
21 lines
No EOL
454 B
YAML
21 lines
No EOL
454 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
quizroom:
|
|
build:
|
|
context: .
|
|
args:
|
|
- PORT=${PORT:-4500}
|
|
ports:
|
|
- "${PORT:-4500}:${PORT:-4500}"
|
|
volumes:
|
|
- /var/run/docker.sock:/var/run/docker.sock
|
|
environment:
|
|
- PORT=${PORT:-4500}
|
|
- ROOM_ID=${ROOM_ID}
|
|
healthcheck:
|
|
test: curl -f http://localhost:${PORT:-4500}/health || exit 1
|
|
interval: 30s
|
|
timeout: 30s
|
|
retries: 3
|
|
start_period: 30s |