feat: adding docker.compose

This commit is contained in:
Gabriel Luiz Freitas Almeida 2023-03-05 21:53:22 +00:00
commit 9d45ab3e49
3 changed files with 47 additions and 10 deletions

20
docker-compose.yml Normal file
View file

@ -0,0 +1,20 @@
version: '3'
services:
backend:
build:
context: ./
dockerfile: ./dev.Dockerfile
ports:
- "5003:5003"
volumes:
- ./:/app
environment:
- PYTHONPATH=/langflow # add this line to set PYTHONPATH
frontend:
build: ./langflow/frontend
ports:
- "3000:3000"
volumes:
- ./langflow/frontend:/app