only works without user
Posted: Mon Aug 12, 2024 4:58 pm
I have installed the latest version of transmission in docker on debian, it works fine, but if I uncheck the user and password in the docker-compose.yml file there is no way to authenticate, I don't know what to do.
Code: Select all
services:
transmission:
image: lscr.io/linuxserver/transmission:latest
container_name: transmission
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/Madrid
- TRANSMISSION_WEB_HOME= #optional
- USER= santi
- PASS= santi
- WHITELIST= #optional
- PEERPORT= #optional
- HOST_WHITELIST= #optional
volumes:
- ./config:/config
- ./downloads:/downloads
- ./watch:/watch
restart: unless-stopped
network_mode: host