-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
30 lines (30 loc) · 940 Bytes
/
docker-compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
services:
qbittorrent-filters:
container_name: qbittorrent-filters
image: thinhhv/qbittorrent-filters:latest
restart: always
pull_policy: always
network_mode: host
init: true
# Using command or update in environment
# (the params in command will override environment variables)
# command: sh -c "node qbt-filter.js -u 127.0.0.1 -p 8080 -t 10 -c 1"
environment:
URL: ${URL:-127.0.0.1}
PORT: ${PORT:-8080}
USERNAME: ${USERNAME}
PASSWORD: ${PASSWORD}
SSL: ${SSL:-false}
TIME_INTERVAL: ${TIME_INTERVAL:-10}
TIME_CLEAR: ${TIME_CLEAR:-1}
CLEAR_IMMEDIATELY: ${CLEAR_IMMEDIATELY:-false}
WATCH: ${WATCH:-false}
BLOCK_CLIENTS: ${BLOCK_CLIENTS:-false}
BLOCK_LIST: ${BLOCK_LIST}
DELIMITER: ${DELIMITER:-,}
DRY: ${DRY:-false}
DEBUG: ${DEBUG:-false}
logging:
driver: "json-file"
options:
max-size: "10m"