You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
sherlock/sherlock-web/docker-compose.yml

19 lines
344 B

services:
api:
build: ./api
volumes:
- ./api/main.py:/app/main.py
frontend:
build:
context: ../
dockerfile: ./sherlock-web/frontend/Dockerfile
command: npm run dev
volumes:
- ./frontend/app:/app/app/
- ./frontend/public:/app/public
ports:
- 3000:3000
depends_on:
- api