This commit is contained in:
2026-07-21 11:48:50 -05:00
commit 5c2ac5f7e1
24 changed files with 4839 additions and 0 deletions

16
docker-compose.yml Normal file
View File

@@ -0,0 +1,16 @@
services:
debbie-windler-seamstress:
build: .
container_name: debbie-windler-seamstress
restart: unless-stopped
env_file: .env
ports:
- "${PORT:-3000}:3000"
volumes:
- ./storage:/app/storage
- ./public/uploads:/app/public/uploads
healthcheck:
test: ["CMD", "node", "--no-warnings", "-e", "fetch('http://127.0.0.1:3000/healthz').then(r=>process.exit(r.ok?0:1)).catch(()=>process.exit(1))"]
interval: 30s
timeout: 5s
retries: 3