Files
docker-tools/test-stack/compose.yaml
2026-03-22 00:54:34 -07:00

28 lines
554 B
YAML
Executable File

services:
web:
image: nginx:alpine
container_name: test-stack_web
ports:
- "8080:80"
volumes:
- ./html:/usr/share/nginx/html:ro
- web_data:/var/cache/nginx
restart: unless-stopped
labels:
- "com.docker.compose.project=test-stack"
healthcheck:
test: ["CMD", "wget", "--quiet", "--tries=1", "--spider", "http://localhost/"]
interval: 30s
timeout: 10s
retries: 3
start_period: 10s
volumes:
web_data:
driver: local
networks:
default:
name: test-stack_network