- Modifié
Voilà le mien
#STARTrutorrent#
rutorrent:
image: linuxserver/rutorrent
container_name: rutorrent
restart: unless-stopped
labels:
- traefik.enable=true
- traefik.frontend.rule=Host:rutorrent.domain.fr
- traefik.frontend.auth.basic=toto:$$apr1$$qwxfENv3$$V4MpGMsdVdD/8Xyste4cG0
- traefik.port=80
- traefik.docker.network=traefik_proxy
environment:
- PUID=1000
- PGID=1000
ports:
- 5000:5000
- 51413:51413
- 6881:6881/udp
volumes:
- /etc/localtime:/etc/localtime:ro
- /opt/seedbox/docker/toto/rutorrent:/config
- /home/toto:/home/toto
networks:
- proxy
#ENDrutorrent#
Le dossier download, me concernant serait
/home/toto/local/rutorrent
aussi bien sur l'hôte que dans le container
J'ai aussi essayé avec une docker de base sans traefik et sans authentification
docker create \
--name=rutorrent \
-e PUID=1000 \
-e PGID=1000 \
-p 80:80 \
-p 5000:5000 \
-p 51413:51413 \
-p 6881:6881/udp \
-v </path/to/rutorrent/config>:/config \
-v </path/to/rutorrent/downloads>:/downloads \
--restart unless-stopped \
linuxserver/rutorrent
J'avais la même erreur
Merci