Files
HushMap/docker-compose.yml
T
2026-04-12 00:06:40 +00:00

23 lines
341 B
YAML

version: '3.8'
services:
web:
build:
context: .
dockerfile: Dockerfile
ports:
- "3000:3000"
env_file:
- .env
environment:
- NODE_ENV=production
ai_backend:
build:
context: ./backend
dockerfile: Dockerfile
ports:
- "8000:8000"
env_file:
- ./backend/.env