iac/docker/arrs/docker-compose.yml

241 lines
6.3 KiB
YAML
Raw Normal View History

2024-07-12 23:57:29 -04:00
---
services:
bazarr:
image: ghcr.io/linuxserver/bazarr@sha256:ac9fe56bee9133bcb9e27fe48faaf83c57b83d75bacc277d9b2619136632b1fe
2024-07-12 23:57:29 -04:00
container_name: bazarr
ports:
- "6767:6767"
volumes:
- /etc/localtime:/etc/localtime:ro
- /docker/appdata/bazarr:/config
2024-12-03 01:26:30 -05:00
- nas:/data/media
2024-07-12 23:57:29 -04:00
restart: unless-stopped
environment:
- PUID=1000
- PGID=1000
2024-12-03 01:26:30 -05:00
security_opt:
- apparmor:unconfined
2024-07-12 23:57:29 -04:00
lidarr:
image: ghcr.io/linuxserver/lidarr@sha256:0380358d42b0faa91aa37013e7d0c6064e1713a07ec03d6ab3f8e8b9e8f60fb7
2024-07-12 23:57:29 -04:00
container_name: lidarr
ports:
- "8686:8686"
volumes:
- /etc/localtime:/etc/localtime:ro
- /docker/appdata/lidarr:/config
- /data:/data
2024-12-03 01:26:30 -05:00
- nas:/data/media
2024-07-12 23:57:29 -04:00
- /docker/appdata/lidarr-extended:/custom-services.d
- /docker/appdata/lidarr-extended1:/custom-cont-init.d
restart: unless-stopped
environment:
- PUID=1000
- PGID=1000
2024-12-03 01:26:30 -05:00
security_opt:
- apparmor:unconfined
2024-07-12 23:57:29 -04:00
prowlarr:
image: ghcr.io/linuxserver/prowlarr@sha256:1f235ff7a178444398a9a431a4e65704d22f83a348192dececf75811212c9217
2024-07-12 23:57:29 -04:00
container_name: prowlarr
ports:
- "9696:9696"
volumes:
- /docker/appdata/prowlarr:/config
restart: unless-stopped
environment:
- PUID=1000
- PGID=1000
radarr:
image: ghcr.io/linuxserver/radarr@sha256:e633fc93b9e2cea959853d27c6acc1d0b2d1ed7db4a800f6f46fe5b217f13102
2024-07-12 23:57:29 -04:00
container_name: radarr
ports:
- "7878:7878"
volumes:
- /etc/localtime:/etc/localtime:ro
- /docker/appdata/radarr:/config
- /data:/data
2024-12-03 01:26:30 -05:00
- nas:/data/media
2024-07-12 23:57:29 -04:00
restart: unless-stopped
environment:
- PUID=1000
- PGID=1000
2024-12-03 01:26:30 -05:00
security_opt:
- apparmor:unconfined
2024-07-12 23:57:29 -04:00
sonarr:
image: ghcr.io/linuxserver/sonarr@sha256:6221d75e172247220c320bb340ce0ff96a09339216de52b8d861424bfc501cef
2024-07-12 23:57:29 -04:00
container_name: sonarr
ports:
- "8989:8989"
volumes:
- /etc/localtime:/etc/localtime:ro
- /docker/appdata/sonarr:/config
- /data:/data
2024-12-03 01:26:30 -05:00
- nas:/data/media
2024-07-12 23:57:29 -04:00
restart: unless-stopped
environment:
- PUID=1000
- PGID=1000
2024-12-03 01:26:30 -05:00
security_opt:
- apparmor:unconfined
2024-07-12 23:57:29 -04:00
homarr:
container_name: homarr
image: ghcr.io/ajnart/homarr:0.15.10
2024-07-12 23:57:29 -04:00
restart: unless-stopped
volumes:
- /docker/appdata/homarr/configs:/app/data/configs
- /docker/appdata/homarr/icons:/app/public/icons
- /docker/appdata/homarr/data:/data
2024-09-04 22:34:15 -04:00
- /var/run/docker.sock:/var/run/docker.sock
2024-07-12 23:57:29 -04:00
ports:
- '7575:7575'
environment:
- AUTH_PROVIDER=oidc
- AUTH_OIDC_URI=${AUTH_OIDC_URI}
- AUTH_OIDC_CLIENT_SECRET=${AUTH_OIDC_CLIENT_SECRET}
- AUTH_OIDC_CLIENT_ID=${AUTH_OIDC_CLIENT_ID}
- AUTH_OIDC_CLIENT_NAME=authentik
- BASE_URL=${BASE_URL}
- NEXTAUTH_URL=${NEXTAUTH_URL}
- AUTH_OIDC_ADMIN_GROUP=${AUTH_OIDC_ADMIN_GROUP}
2024-09-04 23:38:16 -04:00
2024-07-12 23:57:29 -04:00
doplarr:
image: ghcr.io/linuxserver/doplarr@sha256:b0f1eba48109627edfd358579b106e36d331b74aa09852c1eb12ac4e04c726b3
2024-07-12 23:57:29 -04:00
container_name: doplarr
environment:
- PUID=1000
- PGID=1000
- TZ=${TZ}
- DISCORD__TOKEN=${DISCORD__TOKEN}
- RADARR__API=${RADARR__API}
- RADARR__URL=${RADARR__URL}
- SONARR__API=${SONARR__API}
- SONARR__URL=${SONARR__URL}
2024-12-31 23:47:28 -05:00
- DISCORD__MAX_RESULTS=25
- DISCORD__REQUESTED_MSG_STYLE=plain
- SONARR__QUALITY_PROFILE=WEB-DL (1080p)
- RADARR__QUALITY_PROFILE=Requests
- SONARR__ROOTFOLDER=/data/media/TV
- RADARR__ROOTFOLDER=/data/media/Requests
- PARTIAL_SEASONS=true
- LOG_LEVEL=info
- JAVA_OPTS=
2024-07-12 23:57:29 -04:00
volumes:
- /docker/appdata/doplarr/config:/config
restart: unless-stopped
2024-10-12 15:26:54 -04:00
2024-07-12 23:57:29 -04:00
syncthing:
image: ghcr.io/linuxserver/syncthing@sha256:1f55fa811ad3903c4b421129966e0eea4b21d53d2471158288dc4a353e273a0a
2024-07-12 23:57:29 -04:00
container_name: syncthing
hostname: ARRS
environment:
- PUID=1000
- PGID=1000
- TZ=Etc/UTC
volumes:
- /docker/appdata/syncthing/config:/config
- /docker/appdata/:/docker/appdata/
ports:
- 8384:8384
- 22000:22000/tcp
- 22000:22000/udp
- 21027:21027/udp
restart: unless-stopped
2024-10-30 20:45:09 -04:00
## Should move this to Ubu
2024-10-12 15:26:54 -04:00
code-server:
image: ghcr.io/linuxserver/code-server@sha256:c181b7a2ae59940f276c89fd86cd4f220cdb87886d771b5becf3d4156b3c0bc1
2024-10-12 15:26:54 -04:00
container_name: code-server
environment:
- PUID=1000
- PGID=1000
- TZ=Etc/UTC
- SUDO_PASSWORD=$SUDO_PASSWORD
- PROXY_DOMAIN=$PROXY_DOMAIN
volumes:
- /docker/appdata/code-server/config:/config
ports:
- 8443:8443
restart: unless-stopped
2024-10-30 20:45:09 -04:00
## Downloaders
sabnzbd:
image: ghcr.io/linuxserver/sabnzbd@sha256:80242140e786c1c73d867e8c84bba16c0ebd20cd27a5c6cf69196168b3fe5e35
2024-10-30 20:45:09 -04:00
container_name: sabnzbd
environment:
- PUID=1000
- PGID=1000
- TZ=Etc/UTC
volumes:
- /etc/localtime:/etc/localtime:ro
2024-11-04 23:45:55 -05:00
- /docker/appdata/sab:/config
2024-10-30 20:45:09 -04:00
- /data/usenet:/data/usenet:rw
ports:
- 8080:8080
restart: unless-stopped
arch-qbittorrentvpn:
image: binhex/arch-qbittorrentvpn:4.6.5-1-03
container_name: qbittorrentvpn
volumes:
- '/docker/appdata/qbitty:/config'
- '/data/torrents/:/data/torrents'
- '/etc/localtime:/etc/localtime:ro'
ports:
- '49550:49550'
- '49551:8118'
environment:
- VPN_ENABLED=yes
- VPN_PROV=protonvpn
- VPN_CLIENT=wireguard
- VPN_USER=mafyuh+pmp
- VPN_PASS=
- STRICT_PORT_FORWARD=yes
- LAN_NETWORK=$LAN_NETWORK
- ENABLE_PRIVOXY=yes
- PUID=1000
- PGID=1000
- WEBUI_PORT=49550
- UMASK=1000
- DEBUG=false
cap_add:
- NET_ADMIN
sysctls:
- net.ipv4.conf.all.src_valid_mark=1
privileged: true
network_mode: bridge
restart: unless-stopped
flaresolverr:
image: ghcr.io/flaresolverr/flaresolverr:v3.3.21
container_name: flaresolverr
ports:
- '8191:8191'
environment:
- LOG_LEVEL=info
restart: unless-stopped
2024-10-12 15:26:54 -04:00
2025-01-06 02:06:06 -05:00
kiwix:
command: '"*.zim"'
image: ghcr.io/kiwix/kiwix-serve:3.7.0
ports:
- '8080:8080'
volumes:
- '/docker/appdata/wiki:/data'
2024-07-12 23:57:29 -04:00
networks:
default:
name: arrs_default
2024-12-03 01:26:30 -05:00
volumes:
nas:
driver: local
driver_opts:
type: nfs
o: addr=nas.lan,vers=4,rw
2024-12-13 00:23:31 -05:00
device: ":/mnt/thePool/thePoolShare/Media"