Skip to content

Instantly share code, notes, and snippets.

@igoticecream
Created August 21, 2025 11:54
Show Gist options
  • Save igoticecream/0d8d5b8d17000d1ca0501bf31a7d21ab to your computer and use it in GitHub Desktop.
Save igoticecream/0d8d5b8d17000d1ca0501bf31a7d21ab to your computer and use it in GitHub Desktop.
arr stack
# Docker
COMPOSE_PROJECT_NAME=media
# Timezone
TZ=Europe/Madrid
# User
UID=1027
GID=100
UMASK=022
# Storage
CONFIG_DIR=/volume2/docker/appdata
STORAGE_DIR=/volume1/data
# Plex
PLEX_CLAIM=claim-AAAAAAAAA
---
services:
# https://github.com/linuxserver/docker-qbittorrent
qbittorrent:
image: lscr.io/linuxserver/qbittorrent:latest
container_name: qbittorrent
environment:
- PUID=${UID}
- PGID=${GID}
- TZ=${TZ}
- UMASK=${UMASK}
- WEBUI_PORT=8080
volumes:
- /etc/localtime:/etc/localtime:ro
- ${CONFIG_DIR}/qbittorrent:/config
- ${STORAGE_DIR}/torrents:/data/torrents
ports:
- 8080:8080
- 6881:6881
- 6881:6881/udp
security_opt:
- no-new-privileges:true
restart: unless-stopped
# https://github.com/flaresolverr/flaresolverr
flaresolverr:
image: ghcr.io/flaresolverr/flaresolverr:latest
container_name: flaresolverr
environment:
- TZ=${TZ}
- LOG_LEVEL=info
volumes:
- /etc/localtime:/etc/localtime:ro
ports:
- 8191:8191
security_opt:
- no-new-privileges:true
restart: unless-stopped
# https://github.com/linuxserver/docker-prowlarr
prowlarr:
image: lscr.io/linuxserver/prowlarr:latest
container_name: prowlarr
environment:
- PUID=${UID}
- PGID=${GID}
- TZ=${TZ}
- UMASK=${UMASK}
volumes:
- /etc/localtime:/etc/localtime:ro
- ${CONFIG_DIR}/prowlarr:/config
ports:
- 9696:9696
security_opt:
- no-new-privileges:true
restart: unless-stopped
# https://github.com/linuxserver/docker-sonarr
sonarr:
image: lscr.io/linuxserver/sonarr:latest
container_name: sonarr
environment:
- PUID=${UID}
- PGID=${GID}
- TZ=${TZ}
- UMASK=${UMASK}
volumes:
- /etc/localtime:/etc/localtime:ro
- ${CONFIG_DIR}/sonarr:/config
- ${STORAGE_DIR}:/data
ports:
- 8989:8989
security_opt:
- no-new-privileges:true
restart: unless-stopped
# https://github.com/linuxserver/docker-radarr
radarr:
image: lscr.io/linuxserver/radarr:latest
container_name: radarr
environment:
- PUID=${UID}
- PGID=${GID}
- TZ=${TZ}
- UMASK=${UMASK}
volumes:
- /etc/localtime:/etc/localtime:ro
- ${CONFIG_DIR}/radarr:/config
- ${STORAGE_DIR}:/data
ports:
- 7878:7878
security_opt:
- no-new-privileges:true
restart: unless-stopped
# https://github.com/linuxserver/docker-lidarr
lidarr:
image: lscr.io/linuxserver/lidarr:latest
container_name: lidarr
environment:
- PUID=${UID}
- PGID=${GID}
- TZ=${TZ}
- UMASK=${UMASK}
volumes:
- /etc/localtime:/etc/localtime:ro
- ${CONFIG_DIR}/lidarr:/config
- ${STORAGE_DIR}:/data
ports:
- 8686:8686
security_opt:
- no-new-privileges:true
restart: unless-stopped
# https://github.com/linuxserver/docker-bazarr
bazarr:
image: lscr.io/linuxserver/bazarr
container_name: bazarr
environment:
- PUID=${UID}
- PGID=${GID}
- TZ=${TZ}
- UMASK=${UMASK}
volumes:
- /etc/localtime:/etc/localtime:ro
- ${CONFIG_DIR}/bazarr:/config
- ${STORAGE_DIR}/media:/data/media
ports:
- 6767:6767
security_opt:
- no-new-privileges:true
restart: unless-stopped
# https://github.com/linuxserver/docker-plex
plex:
image: lscr.io/linuxserver/plex:latest
container_name: plex
network_mode: host
environment:
- PUID=${UID}
- PGID=${GID}
- TZ=${TZ}
- UMASK=${UMASK}
- VERSION=latest
- PLEX_CLAIM=${PLEX_CLAIM}
volumes:
# - /dev/shm:/transcode
- /etc/localtime:/etc/localtime:ro
- ${CONFIG_DIR}/plex:/config
- ${STORAGE_DIR}/media:/data/media:ro
devices:
- /dev/dri:/dev/dri
tmpfs:
- /transcode
security_opt:
- no-new-privileges:true
restart: unless-stopped
# https://github.com/linuxserver/docker-overseerr
overseerr:
image: lscr.io/linuxserver/overseerr:latest
container_name: overseerr
environment:
- PUID=${UID}
- PGID=${GID}
- TZ=${TZ}
- UMASK=${UMASK}
volumes:
- /etc/localtime:/etc/localtime:ro
- ${CONFIG_DIR}/overseerr:/config
- ${STORAGE_DIR}/media:/data/media
ports:
- 8555:5055
security_opt:
- no-new-privileges:true
restart: unless-stopped
# https://github.com/ajnart/homarr
homarr:
image: ghcr.io/ajnart/homarr:latest
container_name: homarr
volumes:
- ${CONFIG_DIR}/homarr/configs:/app/data/configs
- ${CONFIG_DIR}/homarr/icons:/app/public/icons
- ${CONFIG_DIR}/homarr/data:/data
- /var/run/docker.sock:/var/run/docker.sock
ports:
- 7575:7575
security_opt:
- no-new-privileges:true
restart: unless-stopped
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment