summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoger Gonzalez <roger@rogs.me>2023-01-15 20:29:49 -0300
committerRoger Gonzalez <roger@rogs.me>2023-01-15 20:29:49 -0300
commit94de1538f1070c7e505766bdba36232a316928e0 (patch)
treefa9ae115586d89b33c0f9b10996b6abded612a2d
parentf35ec143143b43a46cba22153a234b6b1c4da92b (diff)
Fixed qbittorrent port identifier
-rw-r--r--docker-compose.example.yaml2
-rwxr-xr-xinstall.sh2
2 files changed, 2 insertions, 2 deletions
diff --git a/docker-compose.example.yaml b/docker-compose.example.yaml
index 9ae4aa2..d4ab65c 100644
--- a/docker-compose.example.yaml
+++ b/docker-compose.example.yaml
@@ -29,7 +29,7 @@ services:
- <install_location>/config/qbittorrent:/config
restart: unless-stopped
ports: #qbittorrent
- - 8080:8080 #qbittorrent
+ - 8080:8080 # qbittorrent
#network_mode: "service:gluetun"
# Sonarr is used to query, add downloads to the download queue and index TV shows
diff --git a/install.sh b/install.sh
index 33df9ac..a8b9ffc 100755
--- a/install.sh
+++ b/install.sh
@@ -154,7 +154,7 @@ if [ $setup_vpn == "y" ]; then
sed -i -e "s;<mullvad_country>;$mullvad_country;g" $filename
sed -i -e "s;#network_mode: \"service:gluetun\";network_mode: \"service:gluetun\";g" $filename
sed -i -e "s;ports: #qbittorrent;#port: #qbittorrent;g" $filename
- sed -i -e "s;- 8080:8080 # qbittorrent;#- 8080:8080 #qbittorrent;g" $filename
+ sed -i -e "s;- 8080:8080 # qbittorrent;#- 8080:8080 # qbittorrent;g" $filename
sed -i -e "s;#- 8080:8080/tcp # gluetun;- 8080:8080/tcp # gluetun;g" $filename
fi