maddoscientisto-net/docker-compose.yml
MaddoScientisto 246a189bea
All checks were successful
Publish Container / publish (push) Successful in 3m18s
Enhance Docker workflow: add Buildx setup and update README with Docker Compose instructions
2026-03-14 18:46:58 +01:00

16 lines
389 B
YAML

version: '3.8'
services:
maddoscientisto-web:
build:
context: .
dockerfile: Dockerfile
image: ${IMAGE_REGISTRY:-maddoscientisto-web}:${IMAGE_TAG:-latest}
ports:
- "8002:80"
restart: unless-stopped
healthcheck:
test: ["CMD-SHELL", "wget -qO- http://127.0.0.1/ >/dev/null 2>&1 || exit 1"]
interval: 30s
timeout: 5s
retries: 3