Fix container naming
This commit is contained in:
@@ -34,6 +34,7 @@ networks:
|
|||||||
external: false
|
external: false
|
||||||
services:
|
services:
|
||||||
web:
|
web:
|
||||||
|
container_name: nginx
|
||||||
image: "nginx"
|
image: "nginx"
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
ports:
|
ports:
|
||||||
@@ -70,6 +71,7 @@ services:
|
|||||||
# target: /usr/local/share/fonts/custom
|
# target: /usr/local/share/fonts/custom
|
||||||
# read_only: true
|
# read_only: true
|
||||||
certbot:
|
certbot:
|
||||||
|
container_name: certbot
|
||||||
image: certbot/certbot:latest
|
image: certbot/certbot:latest
|
||||||
volumes:
|
volumes:
|
||||||
- /data/certbot/www/:/var/www/certbot/:rw
|
- /data/certbot/www/:/var/www/certbot/:rw
|
||||||
@@ -89,6 +91,7 @@ services:
|
|||||||
- './authelia/:/config'
|
- './authelia/:/config'
|
||||||
logging: *logging
|
logging: *logging
|
||||||
minecraft:
|
minecraft:
|
||||||
|
container_name: minecraft
|
||||||
image: itzg/minecraft-server:latest
|
image: itzg/minecraft-server:latest
|
||||||
tty: true
|
tty: true
|
||||||
stdin_open: true
|
stdin_open: true
|
||||||
@@ -118,6 +121,7 @@ services:
|
|||||||
- "/data/mincraft/plugins:/plugins"
|
- "/data/mincraft/plugins:/plugins"
|
||||||
- "/data/mincraft/config:/config"
|
- "/data/mincraft/config:/config"
|
||||||
gitea:
|
gitea:
|
||||||
|
container_name: gitea
|
||||||
image: docker.gitea.com/gitea:1.24
|
image: docker.gitea.com/gitea:1.24
|
||||||
environment:
|
environment:
|
||||||
- USER_UID=1000
|
- USER_UID=1000
|
||||||
@@ -133,6 +137,7 @@ services:
|
|||||||
- "222:22"
|
- "222:22"
|
||||||
logging: *logging
|
logging: *logging
|
||||||
gitea-runner:
|
gitea-runner:
|
||||||
|
container_name: gitea-runner
|
||||||
image: docker.gitea.com/act_runner:latest
|
image: docker.gitea.com/act_runner:latest
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
networks:
|
networks:
|
||||||
@@ -149,6 +154,7 @@ services:
|
|||||||
depends_on:
|
depends_on:
|
||||||
- gitea
|
- gitea
|
||||||
gpodder:
|
gpodder:
|
||||||
|
container_name: gpodder
|
||||||
image: gitea.loadingm.xyz/the10thwiz/gpodder-rs:latest
|
image: gitea.loadingm.xyz/the10thwiz/gpodder-rs:latest
|
||||||
environment:
|
environment:
|
||||||
- ROCKET_SECRET_KEY=${GPODDER_SECRET_KEY}
|
- ROCKET_SECRET_KEY=${GPODDER_SECRET_KEY}
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
services:
|
services:
|
||||||
gluetun:
|
gluetun:
|
||||||
container_name: GlueTun-VPN
|
container_name: gluetun
|
||||||
image: qmcgaw/gluetun
|
image: qmcgaw/gluetun
|
||||||
cap_add:
|
cap_add:
|
||||||
- NET_ADMIN
|
- NET_ADMIN
|
||||||
@@ -10,6 +10,8 @@ services:
|
|||||||
- 51820:51820/udp
|
- 51820:51820/udp
|
||||||
- 46931:46931
|
- 46931:46931
|
||||||
- 46931:46931/udp
|
- 46931:46931/udp
|
||||||
|
networks:
|
||||||
|
- jellyfin-int
|
||||||
environment:
|
environment:
|
||||||
- VPN_SERVICE_PROVIDER=custom
|
- VPN_SERVICE_PROVIDER=custom
|
||||||
- VPN_TYPE=wireguard
|
- VPN_TYPE=wireguard
|
||||||
|
|||||||
@@ -13,7 +13,8 @@ server {
|
|||||||
location /qbt/ {
|
location /qbt/ {
|
||||||
# include /etc/nginx/snippets/proxy.conf;
|
# include /etc/nginx/snippets/proxy.conf;
|
||||||
include /etc/nginx/snippets/authelia-authrequest.conf;
|
include /etc/nginx/snippets/authelia-authrequest.conf;
|
||||||
proxy_pass http://qbittorrent:8080/;
|
# proxy_pass http://qbittorrent:8080/;
|
||||||
|
proxy_pass http://gluetun:8080/;
|
||||||
proxy_http_version 1.1;
|
proxy_http_version 1.1;
|
||||||
proxy_set_header Host $proxy_host;
|
proxy_set_header Host $proxy_host;
|
||||||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||||
|
|||||||
Reference in New Issue
Block a user