- 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>
11 lines
213 B
YAML
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 |