Files
hola/docker-compose.yml
2025-11-18 13:57:48 +10:00

16 lines
343 B
YAML

services:
web:
build:
context: .
dockerfile: Dockerfile
container_name: hola-site
ports:
- "8080:80"
restart: unless-stopped
healthcheck:
test: ["CMD", "wget", "--quiet", "--tries=1", "--spider", "http://localhost/"]
interval: 30s
timeout: 10s
retries: 3
start_period: 10s