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