-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
37 lines (36 loc) · 1.2 KB
/
docker-compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
version: "3"
services:
reverse-proxy:
container_name: nginx-reverse-proxy
image: ghcr.io/jftung/nginx-reverse-proxy
restart: unless-stopped
volumes:
#- ./nginx/reverse-proxy/nginx.conf:/etc/nginx/nginx.conf
- ./data/certbot/conf/:/etc/letsencrypt/
- ./data/certbot/www/:/var/www/certbot/
ports:
- "80:80"
- "443:443"
command: '/bin/sh -c ''while :; do sleep 6h & wait $${!}; nginx -s reload; done & nginx -g "daemon off;"'''
certbot:
container_name: certbot-beale
image: ghcr.io/jftung/certbot-beale
restart: unless-stopped
volumes:
- ./data/certbot/conf/:/etc/letsencrypt/
- ./data/certbot/www/:/var/www/certbot/
entrypoint: "/bin/sh -c 'trap exit TERM; while :; do certbot renew; sleep 12h & wait $${!}; done;'"
beale:
container_name: nginx-beale
image: ghcr.io/jftung/nginx-beale
restart: unless-stopped
volumes:
#- ./nginx/beale/nginx.conf:/etc/nginx/nginx.conf
- ./beale/html/:/etc/nginx/html/
jenkins-host:
container_name: jenkins-host
image: ghcr.io/jftung/jenkins-host
restart: unless-stopped
volumes:
- ./data/jenkins/:/var/jenkins_home/
- ./beale/html/:/etc/nginx/html/