Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/server-prod-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
- name: Make application.yml
run: |
mkdir -p ./server/config
echo "${{ secrets.APPLICATION_YML }}" > ./server/config/application.yml
echo "${{ secrets.APPLICATION_YML }}" > ./config/application.yml

- name: Deploy with Docker Compose
run: |
Expand Down
5 changes: 2 additions & 3 deletions server/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,9 @@ services:
- TZ=Asia/Seoul
- PROFILES=${PROFILES:?PROFILES environment variable is not set}
volumes:
- ./server/config/application.yml:/app/config/application.yml:ro
- ./config/application.yml:/app/config/application.yml:ro
restart: always


nginx:
container_name: nginx-proxy
image: nginx:latest
Expand All @@ -20,7 +19,7 @@ services:
- "443:443"
volumes:
# 1. Nginx 설정 파일
- ./nginx/conf.d:/etc/nginx/conf.d
- ./nginx:/etc/nginx/conf.d
# 2. SSL 인증서 저장소 (프로젝트 내 certbot 폴더 공유)
- ./certbot/conf:/etc/letsencrypt
- ./certbot/www:/var/www/certbot
Expand Down