hatch-surf/site/docker-compose.yml
Riley Zhang da98ce0c41 Dockerize hatch.surf homepage
- Created Dockerfile using nginx:alpine to serve static files
- Created docker-compose.yml for easy local development
- Added .dockerignore to exclude unnecessary files
- Updated README with Docker instructions
- Tested locally to ensure site runs correctly

Co-Authored-By: Paperclip <noreply@paperclip.ing>
2026-06-24 07:52:29 +02:00

11 lines
213 B
YAML

services:
hatch-homepage:
build: .
ports:
- "3000:80"
volumes:
- .:/usr/share/nginx/html:ro
environment:
- NGINX_HOST=localhost
- NGINX_PORT=80
restart: unless-stopped