Skip to content

Commit

Permalink
fix: undefined network 해결
Browse files Browse the repository at this point in the history
- 도커 이미지 빌드 과정 중에 undefined network 에러 발생
- networks 추가하여 해결
  • Loading branch information
kimyu0218 committed Jan 6, 2024
1 parent e4b6629 commit cf38ada
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 0 deletions.
3 changes: 3 additions & 0 deletions backend/compose.blue-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,6 @@ services:
networks:
- backend
image: "${DOCKER_USERNAME}/magicconch:signal-blue-${GITHUB_SHA}"

networks:
backend:
3 changes: 3 additions & 0 deletions backend/compose.blue-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,3 +47,6 @@ services:
networks:
- backend
command: certonly --webroot --webroot-path=/var/www/html -d was.tarotmilktea.com

networks:
backend:
3 changes: 3 additions & 0 deletions backend/compose.green-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,6 @@ services:
networks:
- backend
image: "${DOCKER_USERNAME}/magicconch:signal-green-${GITHUB_SHA}"

networks:
backend:
3 changes: 3 additions & 0 deletions backend/compose.green-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,3 +50,6 @@ services:
networks:
- backend
command: certonly --webroot --webroot-path=/var/www/html -d was.tarotmilktea.com

networks:
backend:

0 comments on commit cf38ada

Please sign in to comment.