mirror of
https://github.com/mr-vercetti/homeserver.git
synced 2025-07-02 09:55:38 +02:00
Separate stacks, add ghostfolio, listmonk and qbittorrentvpn
This commit is contained in:
20
docker/additional-stacks/gluetun/gluetun.yml
Normal file
20
docker/additional-stacks/gluetun/gluetun.yml
Normal file
@ -0,0 +1,20 @@
|
||||
services:
|
||||
gluetun:
|
||||
image: qmcgaw/gluetun:v3.38
|
||||
container_name: gluetun
|
||||
cap_add:
|
||||
- NET_ADMIN
|
||||
environment:
|
||||
- VPN_SERVICE_PROVIDER=custom
|
||||
- VPN_TYPE=wireguard
|
||||
volumes:
|
||||
- ${APPS_DIR}/gluetun:/gluetun
|
||||
networks:
|
||||
- gluetun
|
||||
ports:
|
||||
# qbittorrent
|
||||
- '8183:8183'
|
||||
|
||||
networks:
|
||||
gluetun:
|
||||
name: gluetun
|
21
docker/additional-stacks/ogt-fs/ogt-fs.yml
Normal file
21
docker/additional-stacks/ogt-fs/ogt-fs.yml
Normal file
@ -0,0 +1,21 @@
|
||||
services:
|
||||
ogt-fs:
|
||||
image: halverneus/static-file-server
|
||||
container_name: ogt-fs
|
||||
networks:
|
||||
- ogt-fs
|
||||
- proxy
|
||||
volumes:
|
||||
- ${DATA_DIR}/ogt-fs:/content/files
|
||||
environment:
|
||||
- FOLDER=/content/files
|
||||
ports:
|
||||
- 8097:8080
|
||||
restart: unless-stopped
|
||||
|
||||
networks:
|
||||
proxy:
|
||||
external:
|
||||
name: proxy
|
||||
ogt-fs:
|
||||
name: ogt-fs
|
16
docker/additional-stacks/qbittorrent/qbittorrent.yml
Normal file
16
docker/additional-stacks/qbittorrent/qbittorrent.yml
Normal file
@ -0,0 +1,16 @@
|
||||
services:
|
||||
qbittorrent:
|
||||
image: linuxserver/qbittorrent
|
||||
container_name: qbittorrent
|
||||
environment:
|
||||
- PUID=${PUID}
|
||||
- PGID=${PGID}
|
||||
- TZ=${TIMEZONE}
|
||||
- UMASK_SET=022
|
||||
- WEBUI_PORT=8183
|
||||
network_mode: "container:gluetun"
|
||||
volumes:
|
||||
- ${APPS_DIR}/qbittorrent/config:/config
|
||||
- ${DATA_DIR}/downloads:/downloads
|
||||
- ${APPS_DIR}/qbittorrent/vuetorrent:/vuetorrent
|
||||
restart: unless-stopped
|
Reference in New Issue
Block a user