Guest User

Untitled

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