certbot을 docker-compose로 같이 띄우기
IT/Server
2023. 8. 19. 15:20
728x90
version: '3.8'
services:
nata_tool:
image: nata_tool:1.0.6
ports:
- "80:80"
- "443:443"
deploy:
resources:
limits:
cpus: '0.80'
memory: 1G
volumes:
- ./container/data:/app/data
- ./container/ssl:/etc/nginx/ssl
- ./container/letsencrypt:/etc/letsencrypt
certbot:
depends_on:
- nata_tool
image: certbot/certbot
container_name: certbot
volumes:
- ./container/certbot/etc:/etc/letsencrypt
- ./container/certbot/var:/var/lib/letsencrypt
- ./container/www:/var/www/html
command: certonly --webroot --webroot-path=/var/www/html --email onojch87@gmail.com --agree-tos --no-eff-email --force-renewal -d modaolive.com -d dev.modoalive.com
'IT > Server' 카테고리의 다른 글
Git 특정계정으로 Pull 받는 방법 (0) | 2024.06.26 |
---|---|
docker 및 docker-compose 설치 가이드 (0) | 2023.08.21 |
라즈베리파이에 젠킨스 설치 및 서비스 등록 (0) | 2023.04.23 |
라즈베리파이(우분투) 외장디스크 자동 마운트하기 (2) | 2023.04.12 |
라즈베리(라즈비안) 파이 시스템 부팅시 vnc 서버 활성화 하기 (0) | 2023.04.07 |