feat: adding docker.compose
This commit is contained in:
parent
7224ed0761
commit
9d45ab3e49
3 changed files with 47 additions and 10 deletions
20
docker-compose.yml
Normal file
20
docker-compose.yml
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue