Compare commits
1 Commits
Author | SHA1 | Date | |
---|---|---|---|
d1f19afc75 |
@ -25,13 +25,28 @@ services:
|
||||
environment:
|
||||
- PUID=${PUID}
|
||||
- PGID=${PGID}
|
||||
- WEBUI_PORT=8080
|
||||
- WEBUI_PORT=8081
|
||||
volumes:
|
||||
- ${MEDIA_DIRECTORY}/downloads:/downloads
|
||||
- ${INSTALL_DIRECTORY}/config/qbittorrent:/config
|
||||
restart: unless-stopped
|
||||
ports: # qbittorrent
|
||||
- 8080:8080 # qbittorrent
|
||||
- 8081:8081 # qbittorrent
|
||||
#network_mode: "service:gluetun"
|
||||
|
||||
# SABnzbd is used to download from usenet
|
||||
sabnzbd:
|
||||
image: lscr.io/linuxserver/sabnzbd:latest
|
||||
container_name: sabnzbd
|
||||
environment:
|
||||
- PUID=${PUID}
|
||||
- PGID=${PGID}
|
||||
volumes:
|
||||
- ${MEDIA_DIRECTORY}/downloads:/downloads
|
||||
- ${INSTALL_DIRECTORY}/config/sabnzbd:/config
|
||||
restart: unless-stopped
|
||||
ports: # sabnzdb
|
||||
- 8080:8080 # sabnzbd
|
||||
#network_mode: "service:gluetun"
|
||||
|
||||
# Sonarr is used to query, add downloads to the download queue and index TV shows
|
||||
@ -141,6 +156,7 @@ services:
|
||||
- 8388:8388/tcp # Shadowsocks
|
||||
- 8388:8388/udp # Shadowsocks
|
||||
#- 8080:8080/tcp # gluetun
|
||||
#- 8081:8081/tcp # gluetun
|
||||
volumes:
|
||||
- ${INSTALL_DIRECTORY}/config/gluetun:/config
|
||||
environment:
|
||||
|
8
docs.org
8
docs.org
@ -140,7 +140,8 @@ running_services_location() {
|
||||
host_ip=$(hostname -I | awk '{ print $1 }')
|
||||
|
||||
services=(
|
||||
"qBittorrent:8080"
|
||||
"qBittorrent:8081"
|
||||
"SABnzbd:8080"
|
||||
"Radarr:7878"
|
||||
"Sonarr:8989"
|
||||
"Lidarr:8686"
|
||||
@ -393,8 +394,11 @@ if [ "$setup_vpn" == "y" ]; then
|
||||
-e "s|vpn_password|$vpn_password|g" "$env_file" \
|
||||
-e "s|#network_mode: \"service:gluetun\"|network_mode: \"service:gluetun\"|g" "$filename" \
|
||||
-e "s|ports: # qbittorrent|#ports: # qbittorrent|g" "$filename" \
|
||||
-e "s|- 8080:8080 # qbittorrent|#- 8080:8080 # qbittorrent|g" "$filename" \
|
||||
-e "s|- 8081:8081 # qbittorrent|#- 8081:8081 # qbittorrent|g" "$filename" \
|
||||
-e "s|ports: # sabnzdb|#ports: # sabnzbd|g" "$filename" \
|
||||
-e "s|- 8080:8080 # sabnzbd|#- 8080:8080 # sabnzbd|g" "$filename" \
|
||||
-e "s|#- 8080:8080/tcp # gluetun|- 8080:8080/tcp # gluetun|g" "$filename"
|
||||
-e "s|#- 8081:8081/tcp # gluetun|- 8081:8081/tcp # gluetun|g" "$filename"
|
||||
fi
|
||||
#+end_src
|
||||
|
||||
|
@ -52,7 +52,8 @@ running_services_location() {
|
||||
host_ip=$(hostname -I | awk '{ print $1 }')
|
||||
|
||||
services=(
|
||||
"qBittorrent:8080"
|
||||
"qBittorrent:8081"
|
||||
"SABnzbd:8080"
|
||||
"Radarr:7878"
|
||||
"Sonarr:8989"
|
||||
"Lidarr:8686"
|
||||
@ -236,8 +237,11 @@ if [ "$setup_vpn" == "y" ]; then
|
||||
-e "s|vpn_password|$vpn_password|g" "$env_file" \
|
||||
-e "s|#network_mode: \"service:gluetun\"|network_mode: \"service:gluetun\"|g" "$filename" \
|
||||
-e "s|ports: # qbittorrent|#ports: # qbittorrent|g" "$filename" \
|
||||
-e "s|- 8080:8080 # qbittorrent|#- 8080:8080 # qbittorrent|g" "$filename" \
|
||||
-e "s|- 8081:8081 # qbittorrent|#- 8081:8081 # qbittorrent|g" "$filename" \
|
||||
-e "s|ports: # sabnzdb|#ports: # sabnzbd|g" "$filename" \
|
||||
-e "s|- 8080:8080 # sabnzbd|#- 8080:8080 # sabnzbd|g" "$filename" \
|
||||
-e "s|#- 8080:8080/tcp # gluetun|- 8080:8080/tcp # gluetun|g" "$filename"
|
||||
-e "s|#- 8081:8081/tcp # gluetun|- 8081:8081/tcp # gluetun|g" "$filename"
|
||||
fi
|
||||
|
||||
sed -i -e "s|<filename>|$filename|g" yams \
|
||||
|
Loading…
x
Reference in New Issue
Block a user