Skip to content

Instantly share code, notes, and snippets.

@pgooch
Created December 1, 2024 01:35
Show Gist options
  • Save pgooch/fa0063138d8a090ef67bf92c4140d5cc to your computer and use it in GitHub Desktop.
Save pgooch/fa0063138d8a090ef67bf92c4140d5cc to your computer and use it in GitHub Desktop.
podman compose file
name: sailing-the-seas
services:
# Torrent searching
prowlarr:
image: lscr.io/linuxserver/prowlarr:latest
container_name: Prowlarr
environment:
- PUID=1000
- PGID=1000
ports:
- 9696:9696
volumes:
- /home/pgooch/Containers/prowlarr:/config:Z
restart: 'unless-stopped'
# TV show automated downloads
sonarr:
image: lscr.io/linuxserver/sonarr:latest
container_name: Sonarr
environment:
- PUID=1000
- PGID=1000
- TZ=Etc/UTC
ports:
- 8989:8989
volumes:
- /home/pgooch/Containers/sonarr:/config:Z
- /storage:/storage:z
- /data/Torrents:/data/Torrents:z
restart: 'unless-stopped'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment