update media and added vaultwarden

This commit is contained in:
Peter Wood
2023-11-02 15:25:14 +00:00
parent fb37c6352a
commit 4938453905
2 changed files with 44 additions and 19 deletions

View File

@@ -2,6 +2,7 @@ version: "3"
services: services:
gluetun: gluetun:
image: qmcgaw/gluetun:latest image: qmcgaw/gluetun:latest
pull_policy: always
container_name: gluetun container_name: gluetun
# line above must be uncommented to allow external containers to connect. See https://github.com/qdm12/gluetun/wiki/Connect-a-container-to-gluetun#external-container-to-gluetun # line above must be uncommented to allow external containers to connect. See https://github.com/qdm12/gluetun/wiki/Connect-a-container-to-gluetun#external-container-to-gluetun
cap_add: cap_add:
@@ -26,9 +27,10 @@ services:
- SERVER_COUNTRIES=United States - SERVER_COUNTRIES=United States
# - SERVER_CITIES=Stockholm # - SERVER_CITIES=Stockholm
# - SERVER_HOSTNAMES: Comma separated list of server hostnames # - SERVER_HOSTNAMES: Comma separated list of server hostnames
restart: always restart: unless-stopped
sabnzbd: sabnzbd:
image: lscr.io/linuxserver/sabnzbd:latest image: lscr.io/linuxserver/sabnzbd:latest
pull_policy: always
container_name: sabnzbd container_name: sabnzbd
environment: environment:
- PUID=1000 - PUID=1000
@@ -41,10 +43,11 @@ services:
- /data/usenet/incomplete-downloads:/incomplete-downloads - /data/usenet/incomplete-downloads:/incomplete-downloads
# network_mode: "service:gluetun" forces sabnzbd to connect to the internet through the VPN defined in the gluetun container above # network_mode: "service:gluetun" forces sabnzbd to connect to the internet through the VPN defined in the gluetun container above
network_mode: "service:gluetun" network_mode: "service:gluetun"
restart: always restart: unless-stopped
sonarr: sonarr:
image: lscr.io/linuxserver/sonarr:latest image: lscr.io/linuxserver/sonarr:latest
container_name: sonarr container_name: sonarr
pull_policy: always
environment: environment:
- PUID=1000 - PUID=1000
- PGID=1000 - PGID=1000
@@ -58,10 +61,11 @@ services:
- /data/usenet/downloads:/downloads - /data/usenet/downloads:/downloads
ports: ports:
- 8989:8989 - 8989:8989
restart: always restart: unless-stopped
radarr: radarr:
image: lscr.io/linuxserver/radarr:latest image: lscr.io/linuxserver/radarr:latest
container_name: radarr container_name: radarr
pull_policy: always
environment: environment:
- PUID=1000 - PUID=1000
- PGID=1000 - PGID=1000
@@ -75,25 +79,11 @@ services:
- /data/usenet/downloads:/downloads - /data/usenet/downloads:/downloads
ports: ports:
- 7878:7878 - 7878:7878
restart: always restart: unless-stopped
lidarr:
image: lscr.io/linuxserver/lidarr:latest
container_name: lidarr
environment:
- PUID=1000
- PGID=1000
- UMASK=022
- TZ=America/New_York
volumes:
- /docker/config/lidarr:/config
- /mnt/share/media/music:/music
- /data/usenet/downloads:/downloads
ports:
- 8686:8686
restart: always
prowlarr: prowlarr:
image: lscr.io/linuxserver/prowlarr:latest image: lscr.io/linuxserver/prowlarr:latest
container_name: prowlarr container_name: prowlarr
pull_policy: always
environment: environment:
- PUID=1000 - PUID=1000
- PGID=1000 - PGID=1000
@@ -103,7 +93,21 @@ services:
ports: ports:
- 9696:9696 - 9696:9696
restart: unless-stopped restart: unless-stopped
tautulli:
image: lscr.io/linuxserver/tautulli:latest
container_name: tautulli
pull_policy: always
environment:
- PUID=1000
- PGID=1000
- TZ=America/New_York
volumes:
- tautulli:/config
ports:
- 8181:8181
restart: unless-stopped
volumes: volumes:
gluetun_data: gluetun_data:
sabnzbd_data: sabnzbd_data:
tautulli:

View File

@@ -0,0 +1,21 @@
version: "3"
services:
vaultwarden:
image: vaultwarden/server:latest
container_name: vaultwarden
ports:
- 95:80
# - 5443:443
volumes:
- vaultwarden_data:/data
environment:
- WEBSOCKET_ENABLED="true" # Enable WebSocket notifications
- ADMIN_TOKEN="bbhRvE7M/cZJ2b2bO5pC24z0gbdjpF7svlTWAAkDEm3sQ8WrVOjKZXePQ0JPlYLs"
- DOMAIN="https://pw.peterwood.rocks"
- ROCKET_PORT="80"
- ROCKET_PROFILE="release"
# need more environment variables here
restart: always
volumes:
vaultwarden_data: