Hello,
I have just installed my first docker with the intention to install "transmission".
followed this guide:
https://hub.docker.com/r/linuxserver/transmission
and i did something wrong as i can not access the web interface, i got a ERR_CONNECTION_REFUSED.
I created a user for accessing transmission
I created a shared folder where to download, watch and config.
all folders were created when i started the service (no files inside yet)
I installed the docker as a "stack" (dont ask me why ><)
I used the following:
Code
---
version: "2.1"
services:
transmission:
image: lscr.io/linuxserver/transmission
container_name: transmission
environment:
- PUID=997
- PGID=100
- TZ=Europe/Madrid
#- TRANSMISSION_WEB_HOME=/combustion-release/ #optional
- USER=onlineuser #optional
- PASS=onlineuserpasshere #optional
- WHITELIST=iplist #optional
- PEERPORT=peerport #optional
- HOST_WHITELIST=dnsnane list #optional
volumes:
- /srv/dev-disk-by-uuid-33874718-c347-450a-ab22-b88e67b30ab2/NBackup/AAA-Configs/transmissionConfig:/config
- /srv/dev-disk-by-uuid-4ce0985a-7887-48e7-aa96-cc1410ab1f67/NData/AAA-Torrents/Downloads:/downloads
- /srv/dev-disk-by-uuid-4ce0985a-7887-48e7-aa96-cc1410ab1f67/NData/AAA-Torrents/Watch:/watch
ports:
- 9091:9091
- 51413:51413
- 51413:51413/udp
restart: unless-stopped
Display More
I found the PUID and PGID by executing the following:
When I start the service, all those folders are created, but....
Thanks