Fix healthchecks: install curl in backend and frontend images

This commit is contained in:
Agent Zero
2026-05-24 21:54:58 +00:00
commit cdf350c618
52 changed files with 7885 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
version: '3.8'
services:
backend:
build: ./backend
ports:
- "5000:5000"
environment:
- NODE_ENV=production
- JWT_SECRET=your-secret-key-change-me
volumes:
- sqlite_data:/app/data
restart: unless-stopped
frontend:
build: ./frontend
ports:
- "80:80"
depends_on:
- backend
restart: unless-stopped
volumes:
sqlite_data: