quivr/docker-compose.yml
2023-05-21 02:52:22 +02:00

31 lines
562 B
YAML

version: "3"
services:
frontend:
env_file:
- .frontend_env
build:
context: frontend
dockerfile: Dockerfile
container_name: web
restart: always
volumes:
- ./frontend/:/app
- /app/node_modules
- /app/.next
ports:
- 3000:3000
backend:
env_file:
- .backend_env
environment:
- supabase_url="totot"
build:
context: backend
dockerfile: Dockerfile
container_name: backend
restart: always
volumes:
- ./backend/:/code/
ports:
- 5000:5000