Files
tfm_ainventory/docker-compose.yml
Daniel Bedeleanu 161a182281 Build [v.1.3.9]
2026-04-12 07:29:58 +03:00

59 lines
1.5 KiB
YAML

version: '3.8'
services:
backend:
build:
context: .
dockerfile: backend/Dockerfile
networks:
- inventory_net
ports:
- "8000:8000"
volumes:
- ./data:/app/data
- ./logs:/app/logs
- ./scripts:/app/scripts:ro
environment:
- DATA_DIR=/app/data
- LOGS_DIR=/app/logs
# [M-01] CORS allowed origins — customize for production
- ALLOWED_ORIGINS=http://localhost:3000,http://localhost:3002
# [C-01] JWT secret key — GENERATE A SECURE VALUE FOR PRODUCTION!
- JWT_SECRET_KEY=${JWT_SECRET_KEY:-change-me-in-production}
restart: unless-stopped
frontend:
build:
context: .
dockerfile: frontend/Dockerfile
networks:
- inventory_net
ports:
- "3000:3000"
volumes:
- ./logs:/app/logs
# Write Next.js logs to both stdout (docker logs) and file (mapped volume)
command: sh -c "mkdir -p /app/logs && node server.js 2>&1 | tee -a /app/logs/frontend.log"
restart: unless-stopped
proxy:
image: caddy:alpine
networks:
- inventory_net
ports:
- "3002:3002"
- "3003:3003"
volumes:
- ./Caddyfile:/etc/caddy/Caddyfile
# Persist the internal Caddy certificates so users don't get new certificate warnings constantly
- ./data/caddy_data:/data
- ./data/caddy_config:/config
depends_on:
- frontend
- backend
restart: unless-stopped
networks:
inventory_net:
driver: bridge