Some checks failed
Build hatch.surf / build (push) Failing after 3s
- 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>
21 lines
382 B
YAML
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
|