hatch-surf/docker-compose.yml
Chris Anderson d6888a4731
Some checks failed
Build hatch.surf / build (push) Failing after 3s
Deploy hatch.surf in Docker container
- Updated docker-compose.yml to expose port 8080
- Updated nginx config to reverse proxy to Docker container
- hatch.surf now runs in Docker, not direct /var/www
- Container health check enabled

Co-Authored-By: Paperclip <noreply@paperclip.ing>
2026-06-24 10:13:26 +02:00

21 lines
382 B
YAML

services:
hatch-web:
build:
context: .
dockerfile: Dockerfile
container_name: hatch-web
restart: unless-stopped
ports:
- "8080:80"
networks:
- hatch-network
healthcheck:
test: ["CMD", "wget", "-qO-", "http://localhost:80/"]
interval: 30s
timeout: 3s
retries: 3
networks:
hatch-network:
driver: bridge