-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert "[FEAT] 운영 개발 서버 분리 및 배포자동화 업데이트 (#372)"
This reverts commit bafaab4.
- Loading branch information
Showing
11 changed files
with
113 additions
and
336 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
#blue | ||
version: '3' | ||
services: | ||
# 서비스의 이름 | ||
backend: | ||
# 현재 디렉토리에서의 Dockerfile을 사용하여 Docker 이미지를 빌드 | ||
build: . | ||
# 호스트의 8081 포트와 컨테이너의 80 포트를 매핑 | ||
environment: | ||
TZ: "Asia/Seoul" | ||
ports: | ||
- "8081:8080" | ||
# 컨테이너의 이름 | ||
container_name: spring-blue | ||
extra_hosts: | ||
- "host.docker.internal:host-gateway" | ||
volumes: | ||
- /home/ubuntu/app/log:/log |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#green | ||
version: '3' | ||
services: | ||
backend: | ||
build: . | ||
ports: | ||
- "8082:8080" | ||
container_name: spring-green | ||
environment: | ||
TZ: "Asia/Seoul" | ||
extra_hosts: | ||
- "host.docker.internal:host-gateway" | ||
volumes: | ||
- /home/ubuntu/app/log:/log |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.