hatch-surf/docker-compose.yml
Riley Zhang dcc26b766b deploy: landing page redesign - static HTML with anime.js
- Simplified Dockerfile to serve static files directly (no Next.js build)
- Copied redesign files (index.html, style.css, main.js) to out/
- Added brand/favicon assets
- Backed up previous Next.js build to out.backup.*
- Container rebuilt and verified healthy on port 8080

Co-Authored-By: Paperclip <noreply@paperclip.ing>
2026-06-25 03:36:11 +02:00

22 lines
412 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-SHELL", "curl -f http://localhost/ || exit 1"]
interval: 30s
timeout: 10s
retries: 5
start_period: 30s
networks:
hatch-network:
driver: bridge