Skip to content

Commit 1dd5bda

Browse files
committed
Describe how to pass arguments to qbt-nox
1 parent 17c759c commit 1dd5bda

File tree

5 files changed

+13
-0
lines changed

5 files changed

+13
-0
lines changed

Readme.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,8 @@ https://github.com/qbittorrent/qBittorrent/issues
111111
* A few notes:
112112
* Alternatively, you can use `ghcr.io/qbittorrent/docker-qbittorrent-nox:${QBT_VERSION}`
113113
for the image path.
114+
* You can pass command-line arguments to `qbittorrent-nox` by appending them to the end of `docker run ...` command.
115+
If using Docker Compose, modify the `command:` array in docker-compose.yml.
114116
* By default the timezone in the container uses the default of Alpine Linux (which is most likely `UTC`).
115117
You can set the environment variable `TZ` to your preferred value.
116118
* You can change the User ID (UID) and Group ID (GID) of the `qbittorrent-nox` process by setting

docker-compose.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@ services:
33
# for debugging
44
#cap_add:
55
#- SYS_PTRACE
6+
# additional arguments to `qbittorrent-nox`
7+
#command:
8+
#- --help
69
container_name: qbittorrent-nox
710
environment:
811
#- PAGID=10000

docker-stack.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ services:
55
# for debugging
66
#cap_add:
77
#- SYS_PTRACE
8+
# additional arguments to `qbittorrent-nox`
9+
#command:
10+
#- --help
811
environment:
912
#- PAGID=10000
1013
#- PGID=1000

manual_build/Readme.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,8 @@ There are some paths involved:
9595
```
9696

9797
* A few notes:
98+
* You can pass command-line arguments to `qbittorrent-nox` by appending them to the end of `docker run ...` command.
99+
If using Docker Compose, modify the `command:` array in docker-compose.yml.
98100
* By default the timezone in the container uses the default of Alpine Linux (which is most likely `UTC`).
99101
You can set the environment variable `TZ` to your preferred value.
100102
* You can change the User ID (UID) and Group ID (GID) of the `qbittorrent-nox` process by setting

manual_build/docker-compose.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ services:
44
# for debugging
55
#cap_add:
66
#- SYS_PTRACE
7+
# additional arguments to `qbittorrent-nox`
8+
#command:
9+
#- --help
710
container_name: qbittorrent-nox
811
environment:
912
#- PAGID=10000

0 commit comments

Comments
 (0)