16 lines
382 B
YAML
16 lines
382 B
YAML
|
|
services:
|
||
|
|
wilddragon:
|
||
|
|
build: .
|
||
|
|
container_name: wilddragon-site
|
||
|
|
restart: unless-stopped
|
||
|
|
ports:
|
||
|
|
- "43036:43036"
|
||
|
|
environment:
|
||
|
|
- NODE_ENV=production
|
||
|
|
- NEXT_TELEMETRY_DISABLED=1
|
||
|
|
healthcheck:
|
||
|
|
test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://localhost:43036/"]
|
||
|
|
interval: 30s
|
||
|
|
timeout: 10s
|
||
|
|
retries: 3
|