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_port: "45132"
|
||||||
dashy_domain: "start.zailon.ru"
|
dashy_domain: "start.zailon.ru"
|
||||||
|
|
||||||
qbittorrent_base_dir: "/opt/qbittorrent"
|
---
|
||||||
|
qbittorrent_base_dir: "/mnt/qbittorrent"
|
||||||
qbittorrent_config_dir: "{{ qbittorrent_base_dir }}/config"
|
qbittorrent_config_dir: "{{ qbittorrent_base_dir }}/config"
|
||||||
qbittorrent_downloads_dir: "{{ qbittorrent_base_dir }}/downloads"
|
qbittorrent_downloads_dir: "{{ qbittorrent_base_dir }}/downloads"
|
||||||
qbittorrent_port_web: "45133"
|
qbittorrent_port_webui: 45133
|
||||||
qbittorrent_port_tcp: "6881"
|
qbittorrent_port_torrent: 6881
|
||||||
qbittorrent_port_udp: "6881"
|
qbittorrent_webui_username: "zailon"
|
||||||
qbittorrent_puid: "1000"
|
qbittorrent_webui_password: "13qeadZC"
|
||||||
qbittorrent_pgid: "1000"
|
|
||||||
qbittorrent_image: "lscr.io/linuxserver/qbittorrent:latest"
|
|
||||||
|
|
||||||
# ------------ data (192.168.1.202) ------------
|
# ------------ data (192.168.1.202) ------------
|
||||||
bookstack_base_dir: "/mnt/bookstack"
|
bookstack_base_dir: "/mnt/bookstack"
|
||||||
|
|||||||
@ -1,13 +1,15 @@
|
|||||||
---
|
---
|
||||||
services:
|
services:
|
||||||
qbittorrent:
|
qbittorrent:
|
||||||
image: {{ qbittorrent_image }}
|
image: lscr.io/linuxserver/qbittorrent:latest
|
||||||
container_name: qbittorrent
|
container_name: qbittorrent
|
||||||
environment:
|
environment:
|
||||||
- PUID={{ qbittorrent_puid }}
|
- PUID=1000
|
||||||
- PGID={{ qbittorrent_pgid }}
|
- PGID=1000
|
||||||
- TZ={{ timezone }}
|
- TZ={{ timezone }}
|
||||||
- WEBUI_PORT=8080
|
- WEBUI_PORT={{ qbittorrent_port_webui }}
|
||||||
|
- WEBUI_USERNAME={{ qbittorrent_webui_username }}
|
||||||
|
- WEBUI_PASSWORD={{ qbittorrent_webui_password }}
|
||||||
- TORRENTING_PORT=6881
|
- TORRENTING_PORT=6881
|
||||||
volumes:
|
volumes:
|
||||||
- {{ qbittorrent_config_dir }}:/config
|
- {{ qbittorrent_config_dir }}:/config
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user