28 lines
555 B
YAML
28 lines
555 B
YAML
|
|
version: '3.9'
|
||
|
|
|
||
|
|
services:
|
||
|
|
audio-ui:
|
||
|
|
build:
|
||
|
|
context: .
|
||
|
|
dockerfile: Dockerfile
|
||
|
|
container_name: audio-ui
|
||
|
|
restart: unless-stopped
|
||
|
|
ports:
|
||
|
|
- "3000:80"
|
||
|
|
environment:
|
||
|
|
- NODE_ENV=production
|
||
|
|
healthcheck:
|
||
|
|
test: ["CMD", "wget", "--quiet", "--tries=1", "--spider", "http://localhost/"]
|
||
|
|
interval: 30s
|
||
|
|
timeout: 10s
|
||
|
|
retries: 3
|
||
|
|
start_period: 40s
|
||
|
|
labels:
|
||
|
|
- "com.docker.compose.project=audio-ui"
|
||
|
|
networks:
|
||
|
|
- audio-ui-network
|
||
|
|
|
||
|
|
networks:
|
||
|
|
audio-ui-network:
|
||
|
|
driver: bridge
|