Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Certbot 컨테이너 삭제 #58

Merged
merged 1 commit into from
Nov 15, 2023
Merged
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
30 changes: 15 additions & 15 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,21 +28,21 @@ services:
- khumon


certbot:
container_name: certbot
image: certbot/certbot
restart: unless-stopped
volumes:
- ../certbot/conf:/etc/letsencrypt # 추가
- ../certbot/www:/var/www/certbot # 추가
- ../../etc/letsencrypt/live/khumon-edu.kro.kr/fullchain.pem:/etc/letsencrypt/live/khumon-edu.kro.kr/fullchain.pem
- ../../etc/letsencrypt/live/khumon-edu.kro.kr/privkey.pem:/etc/letsencrypt/live/khumon-edu.kro.kr/privkey.pem
- ../../etc/letsencrypt/ssl-dhparams.pem:/etc/letsencrypt/ssl-dhparams.pem
- ../../etc/letsencrypt/options-ssl-nginx.conf:/etc/letsencrypt/options-ssl-nginx.conf
networks:
- reverseproxy
depends_on:
- nginx
# certbot:
# container_name: certbot
# image: certbot/certbot
# restart: unless-stopped
# volumes:
# - ../certbot/conf:/etc/letsencrypt # 추가
# - ../certbot/www:/var/www/certbot # 추가
# - ../../etc/letsencrypt/live/khumon-edu.kro.kr/fullchain.pem:/etc/letsencrypt/live/khumon-edu.kro.kr/fullchain.pem
# - ../../etc/letsencrypt/live/khumon-edu.kro.kr/privkey.pem:/etc/letsencrypt/live/khumon-edu.kro.kr/privkey.pem
# - ../../etc/letsencrypt/ssl-dhparams.pem:/etc/letsencrypt/ssl-dhparams.pem
# - ../../etc/letsencrypt/options-ssl-nginx.conf:/etc/letsencrypt/options-ssl-nginx.conf
# networks:
# - reverseproxy
# depends_on:
# - nginx
redis:
container_name: redis
image: redis
Expand Down
Loading