Skip to content

Commit

Permalink
Merge pull request #165 from boostcampwm-2024/feature/docker-front
Browse files Browse the repository at this point in the history
도커 컴포즈 백엔드 서버 실행 안되는 버그 수정
  • Loading branch information
SeoGeonhyuk authored Nov 28, 2024
2 parents 82b550c + 517a8c0 commit 4ad9e55
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion docker-composes/cloud-canvas-back.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ services:
REDIS_PORT: ${REDIS_PORT}
ports:
- '3000:3000'
entrypoint: sh -c "npx prisma generate && npx prisma migrate reset --force && node ./dist/src/main.js"
entrypoint: sh -c "cd apps/server && npx prisma migrate reset --force && node ./dist/src/main.js"
networks:
- cloud-canvas-network
restart: unless-stopped
Expand Down
2 changes: 2 additions & 0 deletions docker-composes/cloud-canvas-front-hub.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ services:
front-hub:
image: cloud-canvas.kr.ncr.ntruss.com/front-hub:dev
container_name: front-hub
environment:
NEXT_PUBLIC_BACK_URL: ${NEXT_PUBLIC_BACK_URL}
ports:
- '3000:3000'
networks:
Expand Down

0 comments on commit 4ad9e55

Please sign in to comment.