Le problème est en fait simple.
Tu as link sickrage et couchpotato à rutorrent, ce qui devrait être le contraire.
Il faut donc supprimer les links sur rutorrent, et faire un link de rutorrent sur sickrage et couchpotato, ce qui donnerai :
mailserver:
image: hardware/mailserver
container_name: mailserver
domainname: de-mauroy.fr
hostname: mail
links:
- mariadb:mariadb
ports:
- "25:25" # SMTP - Required
- "143:143" # IMAP STARTTLS - For webmails/desktop clients
- "465:465" # SMTPS SSL/TLS - Enabled for compatibility reason, otherwise disabled
- "587:587" # Submission STARTTLS - For webmails/desktop clients
- "993:993" # IMAPS SSL/TLS - For webmails/desktop clients
- "4190:4190" # SIEVE STARTTLS - Optional, but recommended for mail filtering
environment:
- DBPASS=pridampostfix
volumes:
- /home/matt/docker/mail:/var/mail
- /home/matt/docker/opendkim:/etc/opendkim/keys
- /etc/letsencrypt:/etc/letsencrypt
# Control panel
postfixadmin:
image: hardware/postfixadmin
container_name: postfixadmin
domainname: de-mauroy.fr
hostname: postfix
links:
- mailserver:mailserver
- mariadb:mariadb
environment:
- DBPASS=pridampostfix
# Webmail
rainloop:
image: hardware/rainloop
container_name: rainloop
links:
- mailserver:mailserver
- mariadb:mariadb
volumes:
- /home/matt/docker/rainloop:/rainloop/data
# Web server
nginx:
image: wonderfall/nginx
container_name: nginx
links:
- postfixadmin:postfixadmin
- rainloop:rainloop
- rutorrent:rutorrent
- farfadet:farfadet
- bulhion:bulhion
- sickrage:sickrage
- couchpotato:couchpotato
ports:
- "80:8000"
- "443:4430"
volumes:
- /home/matt/docker/nginx/sites-enabled:/sites-enabled
- /home/matt/docker/nginx/conf:/conf.d
- /home/matt/docker/nginx/log:/var/log/nginx
- /home/matt/docker/nginx/passwd:/passwds
- /etc/letsencrypt:/certs
#rutorrent
rutorrent:
image: wonderfall/rutorrent
container_name: rutorrent
environment:
- WEBROOT=/
ports:
- "49184:49184"
- "49184:49184/udp"
volumes:
- /home/matt/docker/seedbox:/data
- /home/matt/docker/seedbox/rutorrent:/var/www/torrent/share/users
# Databases
mariadb:
image: mariadb:10.1
container_name: mariadb
environment:
- MYSQL_ROOT_PASSWORD=pridammariadb
- MYSQL_DATABASE=postfix
- MYSQL_USER=postfix
- MYSQL_PASSWORD=pridampostfix
volumes:
- /home/matt/docker/mysql/db:/var/lib/mysql
#PLEX
plex:
image: wernight/plex-media-server:autoupdate
container_name: plex
hostname: e3-sat-2
ports:
# for access to the Plex Media Server [required]
- "32400:32400"
# for access to the Plex DLNA Server
- "1900:1900/udp"
- "32469:32469"
# for controlling Plex Home Theater via Plex Companion
- "3005:3005"
# for older Bonjour/Avahi network discovery
- "5353:5353/udp"
# for controlling Plex for Roku via Plex Companion
- "8324:8324"
# for current GDM network discovery
- "32410:32410/udp"
- "32412:32412/udp"
- "32413:32413/udp"
- "32414:32414/udp"
volumes:
- /home/matt/docker/plex/config:/config
- /home/matt:/media
- /home/matt/docker/seedbox/torrents:/torrents
environment:
- PLEX_LOGIN=mdemauroy
- PLEX_PASSWORD=pridamplex
restart: always
#Farfadet
farfadet:
image: eugeneware/docker-wordpress-nginx
container_name: farfadet
hostname: farfadet
#Bulhion
bulhion:
image: eugeneware/docker-wordpress-nginx
container_name: bulhion
hostname: bulhion
#Sickrage
sickrage:
image: xataz/sickrage
container_name: sickrage
hostname: sickrage
ports:
- "8081:8081"
links:
- rutorrent:rutorrent
volumes:
- /home/matt/docker/sickrage/config:/config
- /home/matt/series:/series
- /home/matt/docker/seedbox/torrents:/torrents
#Couchpotato
couchpotato:
image: xataz/couchpotato
container_name: couchpotato
hostname : couchpotato
ports:
- "5050:5050"
links:
- rutorrent:rutorrent
volumes:
- /home/matt/docker/couchpotato/config:/config
- /home/matt/films:/films
- /home/matt/docker/seedbox/torrents:/torrents