init: Initial Commit
This commit is contained in:
23
docker-compose.dev.yml
Normal file
23
docker-compose.dev.yml
Normal file
@@ -0,0 +1,23 @@
|
||||
version: '3'
|
||||
services:
|
||||
frontend:
|
||||
build:
|
||||
context: ./services/frontend
|
||||
target: 'develop-stage'
|
||||
depends_on:
|
||||
- backend
|
||||
ports:
|
||||
- '8000:8000'
|
||||
volumes:
|
||||
- './services/frontend:/app'
|
||||
- /app/node_modules
|
||||
command: /bin/sh -c "yarn dev"
|
||||
backend:
|
||||
build:
|
||||
context: ./services/backend
|
||||
dockerfile: Dockerfile
|
||||
ports:
|
||||
- 5000:5000
|
||||
volumes:
|
||||
- ./services/backend:/app
|
||||
command: ["python", "app.py"]
|
||||
Reference in New Issue
Block a user