Skip to content

Commit

Permalink
Update working directories for backend and frontend services
Browse files Browse the repository at this point in the history
  • Loading branch information
etienne committed Feb 7, 2024
1 parent 3de427f commit 5949f0c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ services:
backend:
container_name: backend
image: node:21
working_dir: /backend
working_dir: /backend/src
command: sh -c "npm install && npm run start"
volumes:
- ./backend:/backend/src
Expand All @@ -64,7 +64,7 @@ services:
depends_on:
- traefik
image: node:21
working_dir: /frontend
working_dir: /frontend/src
command: sh -c 'npm install && npm run dev'
volumes:
- ./frontend:/frontend/src
Expand Down

0 comments on commit 5949f0c

Please sign in to comment.