deafgain-website/docker-compose.yml
TheMaddax 14fb61aab9 Development environment:
- Added Dockerfile.dev for local development
- Configured volume mounts for hot reloading
- Set up Vite dev server with proper host binding

Production environment:
- Streamlined multi-stage build process
- Removed Nginx in favor of future Caddy setup
- Optimized container size and build steps
2024-11-30 02:10:00 -06:00

14 lines
No EOL
231 B
YAML

version: '3.8'
services:
web:
build:
context: .
dockerfile: Dockerfile
pull_policy: build
ports:
- "804:804"
environment:
- NODE_ENV=production
- PORT=804
restart: unless-stopped