mise a jour des dossiers
This commit is contained in:
parent
57fd3dd99d
commit
5406390eea
4 changed files with 0 additions and 29 deletions
42
docker-compose/plex_et_tautulli/docker-compose.yml
Executable file
42
docker-compose/plex_et_tautulli/docker-compose.yml
Executable file
|
@ -0,0 +1,42 @@
|
|||
## Discord Plex FR : https://discord.gg/ERpYMqS
|
||||
## Version 2021-02-25
|
||||
version: "2.1"
|
||||
services:
|
||||
plex:
|
||||
image: ghcr.io/linuxserver/plex
|
||||
container_name: plex
|
||||
network_mode: host
|
||||
# Decommenter les 2 lignes suivantes pour que watchtower surveille ce conteneur
|
||||
# labels:
|
||||
# - com.centurylinklabs.watchtower.enable=true
|
||||
environment:
|
||||
- PUID=1000
|
||||
- PGID=1000
|
||||
- VERSION=latest
|
||||
- UMASK_SET=022
|
||||
volumes:
|
||||
- /volume1/docker/plex/config:/config
|
||||
- /volume1/docker/plex/transcode:/transcode
|
||||
- /volume1/media/music:/data/music
|
||||
- /volume1/media/movies:/data/movies
|
||||
- /volume1/media/tvshow:/data/tvshow
|
||||
# Decommenter les 2 lignes suivantes pour activer le transcodage matériel ( si NAS compatible )
|
||||
# devices:
|
||||
# - /dev/dri:/dev/dri
|
||||
restart: unless-stopped
|
||||
|
||||
tautulli:
|
||||
image: ghcr.io/linuxserver/tautulli
|
||||
container_name: tautulli
|
||||
network_mode: host
|
||||
# Decommenter les 2 lignes suivantes pour que watchtower surveille ce conteneur
|
||||
# labels:
|
||||
# - com.centurylinklabs.watchtower.enable=true
|
||||
environment:
|
||||
- PUID=1000
|
||||
- PGID=1000
|
||||
- TZ=Europe/Paris
|
||||
volumes:
|
||||
- /volume1/docker/tautulli/config:/config
|
||||
- /volume1/docker/plex/config/Library/Application Support/Plex Media Server/Logs:/logs
|
||||
restart: unless-stopped
|
21
docker-compose/tautulli/docker-compose.yml
Executable file
21
docker-compose/tautulli/docker-compose.yml
Executable file
|
@ -0,0 +1,21 @@
|
|||
## Discord Plex FR : https://discord.gg/ERpYMqS
|
||||
## Version 2021-02-25
|
||||
version: '3.3'
|
||||
services:
|
||||
linuxserver:
|
||||
container_name: tautulli
|
||||
environment:
|
||||
- PUID=1000 # Utiliser la commande (en SSH) : id NOM_UTILISATEUR
|
||||
- PGID=1000 # Utiliser la commande (en SSH) : id NOM_UTILISATEUR
|
||||
- TZ=Europe/Paris
|
||||
ports:
|
||||
- '8181:8181'
|
||||
volumes:
|
||||
- 'votre/chemin/dossier/tautulli/config:/config'
|
||||
- 'votre/chemin/dossier/plexlogs:/mnt'
|
||||
restart: unless-stopped
|
||||
# Decommenter les 2 lignes suivantes pour que watchtower surveille ce conteneur
|
||||
# labels:
|
||||
# - com.centurylinklabs.watchtower.enable=true
|
||||
image: 'ghcr.io/linuxserver/tautulli:latest' # Ancien dépôt : linuxserver/tautulli:latest
|
||||
network_mode: prod #conseillé de ne pas utiliser host car limité a 16 containers
|
23
docker-compose/watchtower/docker-compose.yml
Executable file
23
docker-compose/watchtower/docker-compose.yml
Executable file
|
@ -0,0 +1,23 @@
|
|||
## Discord Plex FR : https://discord.gg/ERpYMqS
|
||||
## Version 2021-02-25
|
||||
version: "2.3"
|
||||
services:
|
||||
watchtower:
|
||||
container_name: watchtower
|
||||
image: containrrr/watchtower:amd64-latest
|
||||
restart: unless-stopped
|
||||
environment:
|
||||
- TZ=Europe/Paris
|
||||
- WATCHTOWER_SCHEDULE= 0 0 6 * * *
|
||||
- WATCHTOWER_LABEL_ENABLE=true
|
||||
- WATCHTOWER_CLEANUP=true
|
||||
- WATCHTOWER_REMOVE_VOLUMES=true
|
||||
- WATCHTOWER_NOTIFICATIONS_LEVEL=debug
|
||||
#Les 3 lignes dessous sont a utiliser pour être notifié par Gotify
|
||||
# - WATCHTOWER_NOTIFICATIONS=gotify
|
||||
# - WATCHTOWER_NOTIFICATION_GOTIFY_URL=https://gotify.ndd.fr
|
||||
# - WATCHTOWER_NOTIFICATION_GOTIFY_TOKEN=
|
||||
- WATCHTOWER_ROLLING_RESTART=true
|
||||
- WATCHTOWER_LIFECYCLE_HOOKS=true
|
||||
volumes:
|
||||
- /var/run/docker.sock:/var/run/docker.sock
|
Loading…
Add table
Add a link
Reference in a new issue