mirror of
https://github.com/bensuperpc/infrastructure.git
synced 2024-11-10 04:07:26 +01:00
Update docker-compose splitting
Signed-off-by: Bensuperpc <bensuperpc@gmail.com>
This commit is contained in:
parent
4beed39731
commit
de813d0f66
23
docker-compose.certbot.yml
Normal file
23
docker-compose.certbot.yml
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
version: "3.9"
|
||||||
|
|
||||||
|
services:
|
||||||
|
certbot:
|
||||||
|
depends_on:
|
||||||
|
- webserver
|
||||||
|
image: certbot/certbot:v1.32.0
|
||||||
|
container_name: certbot
|
||||||
|
profiles:
|
||||||
|
- certbot
|
||||||
|
volumes:
|
||||||
|
- certbot-cert:/etc/letsencrypt
|
||||||
|
- wordpress:/var/www/wordpress
|
||||||
|
- jellyfin:/var/www/jellyfin
|
||||||
|
- ./bensuperpc_website:/var/www/flask
|
||||||
|
#command: certonly --email bensuperpc@bensuperpc.fr --agree-tos --rsa-key-size 4096 --no-eff-email --verbose --noninteractive --staging --webroot \
|
||||||
|
#command: certonly --email bensuperpc@bensuperpc.fr --agree-tos --rsa-key-size 4096 --no-eff-email --verbose --noninteractive --force-renewal --webroot \
|
||||||
|
# --expand
|
||||||
|
command: >
|
||||||
|
certonly --email bensuperpc@bensuperpc.fr --agree-tos --rsa-key-size 4096 --no-eff-email --verbose --noninteractive --keep-until-expiring --webroot
|
||||||
|
--webroot-path=/var/www/flask --domain bensuperpc.org --domain www.bensuperpc.org
|
||||||
|
--webroot-path=/var/www/jellyfin --domain jellyfin.bensuperpc.org --domain www.jellyfin.bensuperpc.org
|
||||||
|
--webroot-path=/var/www/wordpress --domain wordpress.bensuperpc.org --domain www.wordpress.bensuperpc.org
|
46
docker-compose.divers.yml
Normal file
46
docker-compose.divers.yml
Normal file
@ -0,0 +1,46 @@
|
|||||||
|
version: "3.9"
|
||||||
|
|
||||||
|
services:
|
||||||
|
qbittorrent:
|
||||||
|
image: lscr.io/linuxserver/qbittorrent:latest
|
||||||
|
container_name: qbittorrent
|
||||||
|
profiles:
|
||||||
|
- qbittorrent
|
||||||
|
environment:
|
||||||
|
- PUID=1000
|
||||||
|
- PGID=1000
|
||||||
|
- TZ=Europe/London
|
||||||
|
- WEBUI_PORT=8080
|
||||||
|
volumes:
|
||||||
|
- qbittorrent-conf:/config
|
||||||
|
- qbittorrent-downloads:/downloads
|
||||||
|
#ports:
|
||||||
|
# - 8080:8080
|
||||||
|
# - 6881:6881
|
||||||
|
# - 6881:6881/udp
|
||||||
|
restart: unless-stopped
|
||||||
|
networks:
|
||||||
|
- app-network
|
||||||
|
jellyfin:
|
||||||
|
image: lscr.io/linuxserver/jellyfin:latest
|
||||||
|
container_name: jellyfin
|
||||||
|
profiles:
|
||||||
|
- jellyfin
|
||||||
|
environment:
|
||||||
|
- PUID=1000
|
||||||
|
- PGID=1000
|
||||||
|
- TZ=Europe/London
|
||||||
|
- JELLYFIN_PublishedServerUrl=192.168.0.5 #optional
|
||||||
|
volumes:
|
||||||
|
- jellyfin-config:/config
|
||||||
|
- jellyfin-tvseries:/data/tvshows
|
||||||
|
- jellyfin-movies:/data/movies
|
||||||
|
- jellyfin:/var/www/html
|
||||||
|
#ports:
|
||||||
|
# - 8096:8096
|
||||||
|
# - 8920:8920 #optional
|
||||||
|
# - 7359:7359/udp #optional
|
||||||
|
# - 1900:1900/udp #optional
|
||||||
|
restart: unless-stopped
|
||||||
|
networks:
|
||||||
|
- app-network
|
31
docker-compose.nginx.yml
Normal file
31
docker-compose.nginx.yml
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
version: "3.9"
|
||||||
|
|
||||||
|
services:
|
||||||
|
webserver:
|
||||||
|
depends_on:
|
||||||
|
- wordpress
|
||||||
|
image: nginx:1.23
|
||||||
|
container_name: webserver
|
||||||
|
profiles:
|
||||||
|
- webserver
|
||||||
|
restart: unless-stopped
|
||||||
|
ports:
|
||||||
|
- "80:80"
|
||||||
|
- "443:443"
|
||||||
|
volumes:
|
||||||
|
- wordpress:/var/www/wordpress
|
||||||
|
- jellyfin:/var/www/jellyfin
|
||||||
|
- ./nginx-conf:/etc/nginx/conf.d
|
||||||
|
- certbot-cert:/etc/letsencrypt:ro
|
||||||
|
networks:
|
||||||
|
- app-network
|
||||||
|
security_opt:
|
||||||
|
- "no-new-privileges:true"
|
||||||
|
cap_drop:
|
||||||
|
- "ALL"
|
||||||
|
cap_add:
|
||||||
|
- "NET_RAW"
|
||||||
|
- "NET_BIND_SERVICE"
|
||||||
|
- "CAP_CHOWN"
|
||||||
|
- "SETGID"
|
||||||
|
- "SETUID"
|
@ -30,6 +30,16 @@ services:
|
|||||||
- wordpress:/var/www/html
|
- wordpress:/var/www/html
|
||||||
networks:
|
networks:
|
||||||
- app-network
|
- app-network
|
||||||
|
security_opt:
|
||||||
|
- "no-new-privileges:true"
|
||||||
|
cap_drop:
|
||||||
|
- "ALL"
|
||||||
|
cap_add:
|
||||||
|
- "NET_RAW"
|
||||||
|
- "CAP_CHOWN"
|
||||||
|
- "SETGID"
|
||||||
|
- "SETUID"
|
||||||
|
|
||||||
phpmyadmin:
|
phpmyadmin:
|
||||||
image: phpmyadmin:5.2.0
|
image: phpmyadmin:5.2.0
|
||||||
container_name: phpmyadmin
|
container_name: phpmyadmin
|
||||||
|
@ -1,81 +0,0 @@
|
|||||||
version: "3.8"
|
|
||||||
|
|
||||||
services:
|
|
||||||
webserver:
|
|
||||||
depends_on:
|
|
||||||
- wordpress
|
|
||||||
image: nginx:1.23
|
|
||||||
container_name: webserver
|
|
||||||
profiles:
|
|
||||||
- webserver
|
|
||||||
restart: unless-stopped
|
|
||||||
ports:
|
|
||||||
- "80:80"
|
|
||||||
- "443:443"
|
|
||||||
volumes:
|
|
||||||
- wordpress:/var/www/wordpress
|
|
||||||
- jellyfin:/var/www/jellyfin
|
|
||||||
- ./nginx-conf:/etc/nginx/conf.d
|
|
||||||
- certbot-cert:/etc/letsencrypt:ro
|
|
||||||
networks:
|
|
||||||
- app-network
|
|
||||||
qbittorrent:
|
|
||||||
image: lscr.io/linuxserver/qbittorrent:latest
|
|
||||||
container_name: qbittorrent
|
|
||||||
profiles:
|
|
||||||
- qbittorrent
|
|
||||||
environment:
|
|
||||||
- PUID=1000
|
|
||||||
- PGID=1000
|
|
||||||
- TZ=Europe/London
|
|
||||||
- WEBUI_PORT=8080
|
|
||||||
volumes:
|
|
||||||
- qbittorrent-conf:/config
|
|
||||||
- qbittorrent-downloads:/downloads
|
|
||||||
#ports:
|
|
||||||
# - 8080:8080
|
|
||||||
# - 6881:6881
|
|
||||||
# - 6881:6881/udp
|
|
||||||
restart: unless-stopped
|
|
||||||
networks:
|
|
||||||
- app-network
|
|
||||||
jellyfin:
|
|
||||||
image: lscr.io/linuxserver/jellyfin:latest
|
|
||||||
container_name: jellyfin
|
|
||||||
profiles:
|
|
||||||
- jellyfin
|
|
||||||
environment:
|
|
||||||
- PUID=1000
|
|
||||||
- PGID=1000
|
|
||||||
- TZ=Europe/London
|
|
||||||
- JELLYFIN_PublishedServerUrl=192.168.0.5 #optional
|
|
||||||
volumes:
|
|
||||||
- jellyfin-config:/config
|
|
||||||
- jellyfin-tvseries:/data/tvshows
|
|
||||||
- jellyfin-movies:/data/movies
|
|
||||||
- jellyfin:/var/www/html
|
|
||||||
#ports:
|
|
||||||
# - 8096:8096
|
|
||||||
# - 8920:8920 #optional
|
|
||||||
# - 7359:7359/udp #optional
|
|
||||||
# - 1900:1900/udp #optional
|
|
||||||
restart: unless-stopped
|
|
||||||
networks:
|
|
||||||
- app-network
|
|
||||||
certbot:
|
|
||||||
depends_on:
|
|
||||||
- webserver
|
|
||||||
image: certbot/certbot:v1.32.0
|
|
||||||
container_name: certbot
|
|
||||||
profiles:
|
|
||||||
- certbot
|
|
||||||
volumes:
|
|
||||||
- certbot-cert:/etc/letsencrypt
|
|
||||||
- wordpress:/var/www/wordpress
|
|
||||||
- jellyfin:/var/www/jellyfin
|
|
||||||
#command: certonly --email bensuperpc@bensuperpc.fr --agree-tos --rsa-key-size 4096 --no-eff-email --verbose --noninteractive --staging --webroot \
|
|
||||||
#command: certonly --email bensuperpc@bensuperpc.fr --agree-tos --rsa-key-size 4096 --no-eff-email --verbose --noninteractive --force-renewal --webroot \
|
|
||||||
command: certonly --email bensuperpc@bensuperpc.fr --agree-tos --rsa-key-size 4096 --no-eff-email --verbose --noninteractive --keep-until-expiring --webroot \
|
|
||||||
--webroot-path=/app --domain bensuperpc.org --domain www.bensuperpc.org \
|
|
||||||
--webroot-path=/var/www/jellyfin --domain jellyfin.bensuperpc.org --domain www.jellyfin.bensuperpc.org \
|
|
||||||
--webroot-path=/var/www/wordpress --domain wordpress.bensuperpc.org --domain www.wordpress.bensuperpc.org
|
|
Loading…
Reference in New Issue
Block a user