Files
people-randomizr/docker-compose.yml
Julien Froidefond ba5835866c
All checks were successful
Deploy with Docker Compose / deploy (push) Successful in 2m13s
Update next.config.js for standalone output and enhance README with Docker instructions and installation updates
2025-12-19 10:38:53 +01:00

29 lines
530 B
YAML

version: "3.8"
services:
app:
build:
context: .
dockerfile: Dockerfile
container_name: people-randomizr
ports:
- "4399:3000"
environment:
- NODE_ENV=production
- NEXT_TELEMETRY_DISABLED=1
restart: unless-stopped
healthcheck:
test:
[
"CMD",
"wget",
"--quiet",
"--tries=1",
"--spider",
"http://localhost:3000",
]
interval: 30s
timeout: 10s
retries: 3
start_period: 40s