Update 2 files
- /group_vars/all.yml - /roles/qbittorrent/templates/docker-compose.yml.j2
This commit is contained in:
parent
3ecfa60a29
commit
c3e138bd81
@ -141,15 +141,14 @@ dashy_config_dir: "{{ dashy_base_dir }}/config"
|
||||
dashy_port: "45132"
|
||||
dashy_domain: "start.zailon.ru"
|
||||
|
||||
qbittorrent_base_dir: "/opt/qbittorrent"
|
||||
---
|
||||
qbittorrent_base_dir: "/mnt/qbittorrent"
|
||||
qbittorrent_config_dir: "{{ qbittorrent_base_dir }}/config"
|
||||
qbittorrent_downloads_dir: "{{ qbittorrent_base_dir }}/downloads"
|
||||
qbittorrent_port_web: "45133"
|
||||
qbittorrent_port_tcp: "6881"
|
||||
qbittorrent_port_udp: "6881"
|
||||
qbittorrent_puid: "1000"
|
||||
qbittorrent_pgid: "1000"
|
||||
qbittorrent_image: "lscr.io/linuxserver/qbittorrent:latest"
|
||||
qbittorrent_port_webui: 45133
|
||||
qbittorrent_port_torrent: 6881
|
||||
qbittorrent_webui_username: "zailon"
|
||||
qbittorrent_webui_password: "13qeadZC"
|
||||
|
||||
# ------------ data (192.168.1.202) ------------
|
||||
bookstack_base_dir: "/mnt/bookstack"
|
||||
|
||||
@ -1,13 +1,15 @@
|
||||
---
|
||||
services:
|
||||
qbittorrent:
|
||||
image: {{ qbittorrent_image }}
|
||||
image: lscr.io/linuxserver/qbittorrent:latest
|
||||
container_name: qbittorrent
|
||||
environment:
|
||||
- PUID={{ qbittorrent_puid }}
|
||||
- PGID={{ qbittorrent_pgid }}
|
||||
- PUID=1000
|
||||
- PGID=1000
|
||||
- TZ={{ timezone }}
|
||||
- WEBUI_PORT=8080
|
||||
- WEBUI_PORT={{ qbittorrent_port_webui }}
|
||||
- WEBUI_USERNAME={{ qbittorrent_webui_username }}
|
||||
- WEBUI_PASSWORD={{ qbittorrent_webui_password }}
|
||||
- TORRENTING_PORT=6881
|
||||
volumes:
|
||||
- {{ qbittorrent_config_dir }}:/config
|
||||
|
||||
Loading…
Reference in New Issue
Block a user