Bonjour à tous
Je cherche à faire fonctionner un docker-compose pour l'image rtorrent avec filebot de @xataz sans succé. Si je lance la commande suivante tout fonctionne, filebot compris
docker run -dt \
-p 9080:8080 \
-p 6881:6881 \
-p 6881:6881/udp \
-p 127.0.0.1:5000:5000 \
-e WEBROOT=/rutorrent \
-e DHT_RTORRENT=on \
-e PORT_RTORRENT=6881 \
-e FILEBOT_RENAME_METHOD=move \
-e FILEBOT_RENAME_SERIES="{n}/Season {s}/{n} - {s00e00} - {t}" \
-e UID=1001 \
-e GID=1001 \
-v /mnt/docker/rutorrent/data:/data \
-v /mnt/docker/rutorrent/config:/config \
xataz/rtorrent-rutorrent:filebot
Si je lance le docker-compose suivant, rtorrent fonctionne normalement mais filebot non !
torrent:
container_name: torrent
image: xataz/rtorrent-rutorrent:filebot
restart: unless-stopped
tty: true
ports:
- 9080:8080
- 6881:6881
- 6881:6881/udp
- 127.0.0.1:5000:5000
environment:
- UID=1001
- GID=1001
- WEBROOT=/rutorrent
- DHT_RTORRENT=on
- PORT_RTORRENT=6881
- FILEBOT_RENAME_METHOD=move
- FILEBOT_RENAME_SERIES="{n}/Season {s}/{n} - {s00e00} - {t}"
volumes:
- /mnt/docker/rutorrent/data:/data
- /mnt/docker/rutorrent/config:/config
J'ai essayé également avec l'option tty: true mais sans succés
Merci