21 lines
463 B
YAML
21 lines
463 B
YAML
name: surl
|
|
services:
|
|
surl-front:
|
|
image: nginx:1.27.0-alpine
|
|
container_name: surl-front
|
|
ports:
|
|
- 127.0.0.1:80:80
|
|
volumes:
|
|
- "./dist:/usr/share/nginx/html:ro"
|
|
- "./nginx.conf:/etc/nginx/nginx.conf"
|
|
healthcheck:
|
|
test: ["CMD", "curl", "-f", "http://localhost"]
|
|
interval: 30s
|
|
timeout: 10s
|
|
retries: 5
|
|
start_period: 10s
|
|
networks:
|
|
- surl-network
|
|
networks:
|
|
surl-network:
|
|
external: false |