Skip to content

Commit

Permalink
fix: dev 환경 secret key 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
GaBaljaintheroom committed Oct 20, 2024
1 parent 75abe89 commit cb34b86
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/showpot-dev-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ on:
branches:
- develop
- hotfix/**
- feat/change-dev-environment

jobs:
build-and-deploy:
Expand Down Expand Up @@ -100,7 +101,7 @@ jobs:
with:
title: ✅ 개발 서버 배포 프로세스가 완료되었습니다! ✅
webhook: ${{ secrets.DISCORD_WEBHOOK_URL }}
content: "<@1084774841460215839> <@281597829636423682> 배포가 정상적으로 이뤄졌는지 확인해주세요!"
content: "<@1084774841460215839> 배포가 정상적으로 이뤄졌는지 확인해주세요!"
color: 00FF00
username: showPot-Bot
avatar_url: ${{ secrets.DISCORD_NOTIFICATION_SUCCESS_AVATAR_URL }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/showpot-dev-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
with:
title: ✅ Backend CI success ✅
webhook: ${{ secrets.DISCORD_WEBHOOK_URL }}
content: "<@1084774841460215839> <@281597829636423682> ShoPot 이슈 혹은 PR을 확인해주세요!"
content: "<@1084774841460215839> ShoPot 이슈 혹은 PR을 확인해주세요!"
color: 00FF00
username: showPot-Bot
avatar_url: ${{ secrets.DISCORD_NOTIFICATION_SUCCESS_AVATAR_URL }}
Expand Down
9 changes: 5 additions & 4 deletions docker-compose-local.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
services:
postgresql:
container_name: yapp_postgresql
image: postgres:14
image: postgres:alpine
environment:
POSTGRES_DB: yapp
POSTGRES_USER: yapp
Expand All @@ -10,15 +10,16 @@ services:
- '5432:5432'
restart: always
networks:
- app-network
- yapp-network

redis:
container_name: yapp_redis
image: redis:alpine
ports:
- '6379:6379'
networks:
- app-network
- yapp-network

networks:
app-network:
yapp-network:
driver: bridge

0 comments on commit cb34b86

Please sign in to comment.