Skip to content

Commit

Permalink
๐Ÿ“docs : build ์„ค์ • ์ˆ˜์ •
Browse files Browse the repository at this point in the history
  • Loading branch information
DDonghyeo committed May 25, 2024
1 parent 6b073e4 commit b9b1bf5
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ services:
image: ${DOCKERHUB_USERNAME}/waither-config
ports:
- "8888:8888"
# environment:
# CONFIG_GIT_URI : ${CONFIG_GIT_URI}
# CONFIG_PASSPHRASE : ${CONFIG_PASSPHRASE}
environment:
CONFIG_GIT_URI : ${CONFIG_GIT_URI}
CONFIG_PASSPHRASE : ${CONFIG_PASSPHRASE}
# CONFIG_PRIVATE_KEY_DIR : ${CONFIG_PRIVATE_KEY_DIR}
# restart: always
restart: no
Expand Down
8 changes: 4 additions & 4 deletions script/deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@
# -d : detached ๋ชจ๋“œ. ์ปจํ…Œ์ด๋„ˆ๋ฅผ ๋ฐฑ๊ทธ๋ผ์šด๋“œ์—์„œ ์‹คํ–‰

echo "api-gateway server start..."
docker-compose -f /home/docker-compose.yml up -d api-gateway
docker-compose -f /home/docker-compose.yml up -d api-gateway --build
echo "noti-service server start..."
docker-compose -f /home/docker-compose.yml up -d noti-service
docker-compose -f /home/docker-compose.yml up -d noti-service --build
echo "user-service server start..."
docker-compose -f /home/docker-compose.yml up -d user-service
docker-compose -f /home/docker-compose.yml up -d user-service --build
echo "weather-service server start..."
docker-compose -f /home/docker-compose.yml up -d weather-service
docker-compose -f /home/docker-compose.yml up -d weather-service --build

0 comments on commit b9b1bf5

Please sign in to comment.