Advertisement
Guest User

Untitled

a guest
Jan 19th, 2024
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. version: "2.1"
  2. services:
  3. sonarr:
  4. image: lscr.io/linuxserver/sonarr:latest
  5. container_name: sonarr
  6. environment:
  7. - PUID=1000
  8. - PGID=1000
  9. - TZ=Etc/UTC
  10. volumes:
  11. - type: bind
  12. source: '/mnt/bridget/plex_library/TV Shows'
  13. target: /tv_series
  14. - type: bind
  15. source: ./data/config
  16. target: /config
  17. - type: bind
  18. source: /mnt/bridget/plex_library/Pending
  19. target: /downloads
  20. ports:
  21. - 8989:8989
  22. restart: unless-stopped
  23. network_mode: bridge
  24. labels:
  25. - "com.centurylinklabs.watchtower.enable=true"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement