- 233
- 14
- Operating system
- macOS
- Mobile operating system
- iOS
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature currently requires accessing the site using the built-in Safari browser.
What are you talking about here? Are we talking static NAS IP (interface address?) that "broke"? Broke how? What was the result of this problem?Static ip broke - anywhere fixed was listed stoped working. Not sure where or how that happened. IP is assigned, has not changed and still works for accessing service UIs. using local network, most services appear to connect. Replacing static up with local network reconnected services. Prefer the static IP over local network. (Might be related to gluetun?)
consider running a different client to test if this is client specific or not?Transmission - fixing so it does it’s thing.
this is from Portainer or Syno Docker UI? Not connecting, meaning what? What's the outcome? What platform is in use? Because for example, Sonarr via portainer console runs bash with no problem. More feedback on the details (maybe some screens?)VPN Testing - haven’t found a way to test the vpn leak on Synology/Docker transmission. Works well on desktop. Console Bash test for each service - not connecting -?
Do you mean configuration page for the services? Are you sure that permissions are set on those usb destinations for your account?Service Configuration - compose file have the paths included, however paths are not appearing when viewing confirmation page of corresponding service. Paths show empty. Are paths needed in both spots, would this be something to ignore on the service configuration page?
What are you talking about here? Are we talking static NAS IP (interface address?) that "broke"? Broke how? What was the result of this problem?
***yes, will do. Transmission was doing its thing prior to the gluetunconsider running a different client to test if this is client specific or not?this is from Portainer or
*** Docker > service console - I can access the console. Portainer, unable to interact with console regardless of service is on/off. Not familiar on where to start beyond googling trace route which isn't doing much as I am not doing it right.Syno Docker UI? Not connecting, meaning what? What's the outcome? What platform is in use? Because for example, Sonarr via portainer console runs bash with no problem. More feedback on the details (maybe some screens?)
*** Autocorrect will be the death of me (if it isn’t code.) Yes, configuration.Do you mean configuration page for the services? Are you sure that permissions are set on those usb destinations for your account?
[2021-08-25 23:43:10.661] FILE NAME IPv4 DHT announce failed (firewalled, 380 nodes): Invalid argument (/home/buildozer/aports/community/transmission/src/transmission-3.00/libtransmission/tr-dht.c:737)
[2021-08-25 23:46:57.661] FILE NAME IPv4 DHT announce failed (firewalled, 384 nodes): Resource temporarily unavailable (/home/buildozer/aports/community/transmission/src/transmission-3.00/libtransmission/tr-dht.c:737)
version: "2.4"
services:
sonarr:
image: linuxserver/sonarr:latest
network_mode: service:gluetun
restart: always
container_name: sonarr-stack2
environment:
- PGID=100
- PUID=1032
volumes:
- /volumeUSB1/usbshare/sonarr:/media-store/sonarr:rw
- /volume1/docker/media-center-config/sonarr:/config:rw
radarr:
image: linuxserver/radarr:latest
network_mode: service:gluetun
restart: always
container_name: radarr-stack2
environment:
- PGID=100
- PUID=1032
volumes:
- /volumeUSB1/usbshare/radarr:/media-store/radarr:rw
- /volume1/docker/media-center-config/radarr:/config:rw
jackett:
image: linuxserver/jackett:latest
network_mode: service:gluetun
restart: always
container_name: jackett-stack2
environment:
- PGID=100
- PUID=1032
volumes:
- /volumeUSB1/usbshare/jackett:/media-store/jackett:rw
- /volume1/docker/media-center-config/jackett:/config:rw
lidarr:
image: linuxserver/lidarr:latest
network_mode: service:gluetun
restart: always
container_name: lidarr-stack2
environment:
- PGID=100
- PUID=1032
volumes:
- /volumeUSB1/usbshare/lidarr:/media-store/lidarr:rw
- /volume1/docker/media-center-config/lidarr:/config:rw
couchpotato:
image: linuxserver/couchpotato:latest
network_mode: service:gluetun
restart: always
container_name: couchpotato-stack2
environment:
- PGID=100
- PUID=1032
volumes:
- /volumeUSB1/usbshare/lidarr:/media-store/couchpotato:rw
- /volume1/docker/media-center-config/couchpotato:/config:rw
jellyfin:
image: linuxserver/jellyfin:latest
network_mode: service:gluetun
restart: always
container_name: jellyfin-stack2
environment:
- PGID=100
- PUID=1032
volumes:
- /volumeUSB1/usbshare/raw:/media-store/raw:rw
- /volume1/docker/media-center-config/jellyfin:/config:rw
transmission:
image: linuxserver/transmission:latest
network_mode: service:gluetun
restart: always
container_name: transmission-stack2
environment:
- PGID=100
- PUID=1032
volumes:
- /volumeUSB1/usbshare/raw:/media-store/raw:rw
- /volumeUSB1/usbshare/raw:/config:rw
qbittorrent:
image: ghcr.io/linuxserver/qbittorrent
container_name: qbittorrent-stack2
environment:
- PGID=100
- PUID=1032
- TZ=America/New_York
# - WEBUI_PORT=8080
volumes:
- /volumeUSB1/usbshare/raw:/media-store/raw:rw
- /volume1/docker/media-center-config/qbit:/config:rw
restart: unless-stopped
gluetun:
image: qmcgaw/gluetun
container_name: gluetun
cap_add:
- NET_ADMIN
#network_mode: service:gluetun
network_mode: bridge
ports:
- 8888:8888/tcp # HTTP proxy
- 8388:8388/tcp # Shadowsocks
- 8388:8388/udp # Shadowsocks
- 8000:8000/tcp # Built-in HTTP control server
- 9091:9091 #transmission
- 5050:5050 #couchpotato
- 8686:8686 #lidarr
- 9117:9117 #jackett
- 7878:7878 #radarr
- 8989:8989 #sonarr
- 6881:6881 #qbit
- 6881:6881/udp #qbit
- 8080:8080 #qbit
volumes:
- /volume1/docker/media-center-config/gluetun:/gluetun:rw
environment:
- OPENVPN_USER=xxx
- OPENVPN_PASSWORD=xxx
- VPNSP=xxx
- VPN_TYPE=openvpn
- PGID=100
- PUID=1032
- TZ=America/New_York
restart: always
because your compose is missing the download folder mappings for the download clients.it is not respecting the directories and insisting on creating & saving files to internal download & watch directories
Why did you comment out the WEB_PORT variable?Everything is up and running as expected EXCEPT unable to access the url interface;. Permissions seem accurate and browser states server unexpectedly dropped the connection
Commented out in an effort to see if the assigned up would go away. In commenting made no change.because your compose is missing the download folder mappings for the download clients.
Why did you comment out the WEB_PORT variable?
[2021-08-26 20:03:07.133] FILE NAME IPv4 DHT announce failed (firewalled, 371 nodes): Resource temporarily unavailable (/home/buildozer/aports/community/transmission/src/transmission-3.00/libtransmission/tr-dht.c:737)
Use the console option for the sonarr container (via Portainer) tobash
into it. Then you can runtraceroute
command to see if your traffic has any trace towards your ISP or is all inside the VPN tunnel.
version: "2.4"
services:
sonarr:
image: linuxserver/sonarr:latest
network_mode: service:gluetun
restart: always
container_name: sonarr-stack2
environment:
- PGID=100
- PUID=1032
- UMASK=022
volumes:
- /volumeUSB1/usbshare/raw:/media-store/sonarr:rw
- /volume1/docker/media-center-config/sonarr:/config:rw
#- /volumeUSB1/usbshare/media-store/raw:/media-store/raw:rw
#- /volumeUSB1/usbshare/media-store/downloads:/media-store/downloads:rw
radarr:
image: linuxserver/radarr:latest
network_mode: service:gluetun
restart: always
container_name: radarr-stack2
environment:
- PGID=100
- PUID=1032
volumes:
- /volumeUSB1/usbshare/radarr:/media-store/radarr:rw
- /volume1/docker/media-center-config/radarr:/config:rw
jackett:
image: linuxserver/jackett:latest
network_mode: service:gluetun
restart: always
container_name: jackett-stack2
environment:
- PGID=100
- PUID=1032
volumes:
- /volumeUSB1/usbshare/jackett:/media-store/jackett:rw
- /volume1/docker/media-center-config/jackett:/config:rw
lidarr:
image: linuxserver/lidarr:latest
network_mode: service:gluetun
restart: always
container_name: lidarr-stack2
environment:
- PGID=100
- PUID=1032
volumes:
- /volumeUSB1/usbshare/lidarr:/media-store/lidarr:rw
- /volume1/docker/media-center-config/lidarr:/config:rw
couchpotato:
image: linuxserver/couchpotato:latest
network_mode: service:gluetun
restart: always
container_name: couchpotato-stack2
environment:
- PGID=100
- PUID=1032
volumes:
- /volumeUSB1/usbshare/lidarr:/media-store/couchpotato:rw
- /volume1/docker/media-center-config/couchpotato:/config:rw
jellyfin:
image: linuxserver/jellyfin:latest
network_mode: service:gluetun
restart: always
container_name: jellyfin-stack2
environment:
- PGID=100
- PUID=1032
volumes:
- /volumeUSB1/usbshare/raw:/media-store/raw:rw
- /volume1/docker/media-center-config/jellyfin:/config:rw
transmission:
image: linuxserver/transmission:latest
network_mode: service:gluetun
restart: always
container_name: transmission-stack2
environment:
- PGID=100
- PUID=1032
- UMASK=022
volumes:
- /volumeUSB1/usbshare/raw:/downloads:rw
- /volumeUSB1/usbshare/raw/x.incomplete:/watch:rw
- /volume1/docker/media-center-config/transmission:/config:rw
qbittorrent:
image: ghcr.io/linuxserver/qbittorrent
container_name: qbittorrent-stack2
environment:
- PGID=100
- PUID=1032
- TZ=America/New_York
# - WEBUI_PORT=8080
volumes:
- /volumeUSB1/usbshare/raw:/media-store/raw:rw
- /volume1/docker/media-center-config/qbit:/config:rw
restart: always
gluetun:
image: qmcgaw/gluetun
container_name: gluetun
cap_add:
- NET_ADMIN
#network_mode: service:gluetun
network_mode: bridge
ports:
- 8888:8888/tcp # HTTP proxy
- 8388:8388/tcp # Shadowsocks
- 8388:8388/udp # Shadowsocks
- 8000:8000/tcp # Built-in HTTP control server
- 9091:9091 #transmission
- 51413:51413/tcp #transmission
- 51413:51413/udp #transmission
- 5050:5050 #couchpotato
- 8686:8686 #lidarr
- 9117:9117 #jackett
- 7878:7878 #radarr
- 8989:8989 #sonarr
- 6881:6881 #qbit
- 6881:6881/udp #qbit
- 8080:8080 #qbit
volumes:
- /volume1/docker/media-center-config/gluetun:/gluetun:rw
environment:
- OPENVPN_USER=xxx
- OPENVPN_PASSWORD=xxx
- VPNSP=xxx
- VPN_TYPE=openvpn
- PGID=100
- PUID=1032
- TZ=America/New_York
restart: always
docker run -it --rm --net container:gluetun nicolaka/netshoot
Sonarr is missing the exact download destination that your transmission client has. so both containers should have the same pathHope folks aren't getting tired of me or this topic by now...not wanting to outwear my welcome as the expression goes. I am trying...hope that shows.
Stuck. Sonarr not importing downloaded files. Likely a path and/or permissions issue and the more I dig into it the messier it gets. Note that the desired structure uses the directory called raw for downloads, and x.incomplete for the incomplete files. In both cases directories for 'downloads' and 'incomplete' get generated so out of desperation to get some changes happening I have also included them in the attempts to sort out this problem. Yes, you will also see path experiments and permission experiments now in the compose. Probably dirt simple and obvious to those living in this space.
PATHS
Sonar
View attachment 4338
Transmission
View attachment 4339
Note ~ right column originally had /raw/x.incomplete and /raw on the right for path in container.
These were also altered to match the watch and downloads that transmission kept insisting.
PERMISSIONS
Console via MacOS terminal
View attachment 4340Download is showing no writes, and downloads was only added as test...raw is the preferred directory for downloads.
DSM 7 (as admin) > File Station > media-store > raw > properties > permission
View attachment 4341
ERRORS
Sonarr log (outside)
View attachment 4343
Sonarr (inside) > System > Events
View attachment 4344
Sonarr (inside) > Activity > Queue
View attachment 4345
COMPOSE
Note ~ sonarr getting sloppy during experiments. Also added UMASK=022 to Sonarr and Transmission (no change.)Code:version: "2.4" services: sonarr: image: linuxserver/sonarr:latest network_mode: service:gluetun restart: always container_name: sonarr-stack2 environment: - PGID=100 - PUID=1032 - UMASK=022 volumes: - /volumeUSB1/usbshare/raw:/media-store/sonarr:rw - /volume1/docker/media-center-config/sonarr:/config:rw #- /volumeUSB1/usbshare/media-store/raw:/media-store/raw:rw #- /volumeUSB1/usbshare/media-store/downloads:/media-store/downloads:rw radarr: image: linuxserver/radarr:latest network_mode: service:gluetun restart: always container_name: radarr-stack2 environment: - PGID=100 - PUID=1032 volumes: - /volumeUSB1/usbshare/radarr:/media-store/radarr:rw - /volume1/docker/media-center-config/radarr:/config:rw jackett: image: linuxserver/jackett:latest network_mode: service:gluetun restart: always container_name: jackett-stack2 environment: - PGID=100 - PUID=1032 volumes: - /volumeUSB1/usbshare/jackett:/media-store/jackett:rw - /volume1/docker/media-center-config/jackett:/config:rw lidarr: image: linuxserver/lidarr:latest network_mode: service:gluetun restart: always container_name: lidarr-stack2 environment: - PGID=100 - PUID=1032 volumes: - /volumeUSB1/usbshare/lidarr:/media-store/lidarr:rw - /volume1/docker/media-center-config/lidarr:/config:rw couchpotato: image: linuxserver/couchpotato:latest network_mode: service:gluetun restart: always container_name: couchpotato-stack2 environment: - PGID=100 - PUID=1032 volumes: - /volumeUSB1/usbshare/lidarr:/media-store/couchpotato:rw - /volume1/docker/media-center-config/couchpotato:/config:rw jellyfin: image: linuxserver/jellyfin:latest network_mode: service:gluetun restart: always container_name: jellyfin-stack2 environment: - PGID=100 - PUID=1032 volumes: - /volumeUSB1/usbshare/raw:/media-store/raw:rw - /volume1/docker/media-center-config/jellyfin:/config:rw transmission: image: linuxserver/transmission:latest network_mode: service:gluetun restart: always container_name: transmission-stack2 environment: - PGID=100 - PUID=1032 - UMASK=022 volumes: - /volumeUSB1/usbshare/raw:/downloads:rw - /volumeUSB1/usbshare/raw/x.incomplete:/watch:rw - /volume1/docker/media-center-config/transmission:/config:rw qbittorrent: image: ghcr.io/linuxserver/qbittorrent container_name: qbittorrent-stack2 environment: - PGID=100 - PUID=1032 - TZ=America/New_York # - WEBUI_PORT=8080 volumes: - /volumeUSB1/usbshare/raw:/media-store/raw:rw - /volume1/docker/media-center-config/qbit:/config:rw restart: always gluetun: image: qmcgaw/gluetun container_name: gluetun cap_add: - NET_ADMIN #network_mode: service:gluetun network_mode: bridge ports: - 8888:8888/tcp # HTTP proxy - 8388:8388/tcp # Shadowsocks - 8388:8388/udp # Shadowsocks - 8000:8000/tcp # Built-in HTTP control server - 9091:9091 #transmission - 51413:51413/tcp #transmission - 51413:51413/udp #transmission - 5050:5050 #couchpotato - 8686:8686 #lidarr - 9117:9117 #jackett - 7878:7878 #radarr - 8989:8989 #sonarr - 6881:6881 #qbit - 6881:6881/udp #qbit - 8080:8080 #qbit volumes: - /volume1/docker/media-center-config/gluetun:/gluetun:rw environment: - OPENVPN_USER=xxx - OPENVPN_PASSWORD=xxx - VPNSP=xxx - VPN_TYPE=openvpn - PGID=100 - PUID=1032 - TZ=America/New_York restart: always
Qbit starts, however not finding a way to access its webgui w/errors of dropped connection.
/volumeUSB1/usbshare/raw:/downloads:rw
version: "2.4"
services:
sonarr:
image: linuxserver/sonarr:latest
network_mode: service:gluetun
restart: always
container_name: sonarr-stack2
environment:
- PGID=100
- PUID=1032
- UMASK=022
volumes:
#- /volumeUSB1/usbshare/raw:/media-store/sonarr:rw
- /volume1/docker/media-center-config/sonarr:/config:rw
- /volumeUSB1/usbshare/raw:/media-store/downloads:rw
#- /volumeUSB1/usbshare/media-store/raw:/media-store/raw:rw
#- /volumeUSB1/usbshare/media-store/downloads:/media-store/downloads:rw
radarr:
image: linuxserver/radarr:latest
network_mode: service:gluetun
restart: always
container_name: radarr-stack2
environment:
- PGID=100
- PUID=1032
volumes:
- /volumeUSB1/usbshare/radarr:/media-store/radarr:rw
- /volume1/docker/media-center-config/radarr:/config:rw
jackett:
image: linuxserver/jackett:latest
network_mode: service:gluetun
restart: always
container_name: jackett-stack2
environment:
- PGID=100
- PUID=1032
volumes:
- /volumeUSB1/usbshare/jackett:/media-store/jackett:rw
- /volume1/docker/media-center-config/jackett:/config:rw
lidarr:
image: linuxserver/lidarr:latest
network_mode: service:gluetun
restart: always
container_name: lidarr-stack2
environment:
- PGID=100
- PUID=1032
volumes:
- /volumeUSB1/usbshare/lidarr:/media-store/lidarr:rw
- /volume1/docker/media-center-config/lidarr:/config:rw
couchpotato:
image: linuxserver/couchpotato:latest
network_mode: service:gluetun
restart: always
container_name: couchpotato-stack2
environment:
- PGID=100
- PUID=1032
volumes:
- /volumeUSB1/usbshare/lidarr:/media-store/couchpotato:rw
- /volume1/docker/media-center-config/couchpotato:/config:rw
jellyfin:
image: linuxserver/jellyfin:latest
network_mode: service:gluetun
restart: always
container_name: jellyfin-stack2
environment:
- PGID=100
- PUID=1032
volumes:
- /volumeUSB1/usbshare/raw:/media-store/raw:rw
- /volume1/docker/media-center-config/jellyfin:/config:rw
netshoot:
image: nicolaka/netshoot:latest
network_mode: service:gluetun
restart: always
container_name: netshoot-stack2
environment:
- PGID=100
- PUID=1032
volumes:
- /volumeUSB1/usbshare/raw:/media-store/raw:rw
- /volume1/docker/media-center-config/netshoot:/config:rw
transmission:
image: linuxserver/transmission:latest
network_mode: service:gluetun
restart: always
container_name: transmission-stack2
environment:
- PGID=100
- PUID=1032
- UMASK=022
volumes:
- /volumeUSB1/usbshare/raw:/media-store/downloads:rw
- /volumeUSB1/usbshare/raw/x.incomplete:/media-store/watch:rw
- /volume1/docker/media-center-config/transmission:/config:rw
qbittorrent:
image: ghcr.io/linuxserver/qbittorrent
container_name: qbittorrent-stack2
environment:
- PGID=100
- PUID=1032
- TZ=America/New_York
# - WEBUI_PORT=8080
volumes:
- /volumeUSB1/usbshare/raw:/media-store/raw:rw
- /volume1/docker/media-center-config/qbit:/config:rw
restart: always
gluetun:
image: qmcgaw/gluetun
container_name: gluetun
cap_add:
- NET_ADMIN
#network_mode: service:gluetun
network_mode: bridge
ports:
- 8888:8888/tcp # HTTP proxy
- 8388:8388/tcp # Shadowsocks
- 8388:8388/udp # Shadowsocks
- 8000:8000/tcp # Built-in HTTP control server
- 9091:9091 #transmission
- 51413:51413/tcp #transmission
- 51413:51413/udp #transmission
- 5050:5050 #couchpotato
- 8686:8686 #lidarr
- 9117:9117 #jackett
- 7878:7878 #radarr
- 8989:8989 #sonarr
- 6881:6881 #qbit
- 6881:6881/udp #qbit
- 8080:8080 #qbit
volumes:
- /volume1/docker/media-center-config/gluetun:/gluetun:rw
environment:
- OPENVPN_USER=xxx
- OPENVPN_PASSWORD=xxx
- VPNSP=xxx
- VPN_TYPE=openvpn
- PGID=100
- PUID=1032
- TZ=America/New_York
restart: always
path still incorrect.Think the original compose info had the same path for transmission and sonarr when it was pointing to raw (not downloads.) I have been experimenting and no progress...possibly now further away. Import failed error still happening.
path still incorrect.
/volumeUSB1/usbshare/raw:/downloads:rw needs to be in both sonarr and download client,
This is now becasue you have in sonarr defined that media-store path, but becase you terminated it from the container, sonarr is not crying for it.
On the other hand whats the Portainer view of volumes regarding Sonarr and transmission containers now? Are downloads accessible via File station (problem that you had before)?
We use essential cookies to make this site work, and optional cookies to enhance your experience.