From 37ccf9e5c2a4daf998bef0fffe2940009b048468 Mon Sep 17 00:00:00 2001 From: diademiemi Date: Wed, 16 Jun 2021 00:03:35 +0200 Subject: [PATCH] Added docker-compose.yml file --- docker-compose.yml | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 docker-compose.yml diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..5f4f0cb --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,40 @@ +version: '3.1' + +# Please read READMME.md to learn how to properly configure these values + +services: + qbittorrentvpn: + container_name: qbittorrentvpn + image: binhex/arch-qbittorrentvpn + cap_add: + - NET_ADMIN + ports: + - 6881:6881 + - 6881:6881/udp + - 8080:8080 + - 8118:8118 + volumes: + # Replace paths with desired values, defaults to current directory + - ./data:/data + - ./config:/config + - /etc/localtime:/etc/localtime:ro + environment: + # Change to yes if using a VPN + - VPN_ENABLED=no + # If using a VPN, uncomment and fill in correct information, read README.md +# - VPN_USER=myusername +# - VPN_PASS=mypassword +# - VPN_PROV= +# - VPN_CLIENT= +# - VPN_OPTIONS= +# - STRICT_PORT_FORWARD= +# - VPN_INPUT_PORTS= +# - VPN_OUTPUT_PORTS= + - LAN_NETWORK=/ + - NAME_SERVERS= + - ENABLE_PRIVOXY= + - DEBUG= + - WEBUI_PORT=8080 + - UMASK=000 + - PUID=0 + - PGID=0