Merge pull request 'Récupération du travail de @gigi_dsss sur la branche python' (#83) from python_bis into master
Reviewed-on: https://gitea.zoz-serv.org/Zoz/plex_fr_discord_repo/pulls/83 Signed-off-by: narol <narol92@gmail.com>
This commit is contained in:
commit
bb627645a5
5 changed files with 539 additions and 0 deletions
19
docker-compose/deluge/docker-compose.yml
Normal file
19
docker-compose/deluge/docker-compose.yml
Normal file
|
@ -0,0 +1,19 @@
|
|||
## Discord Plex FR : https://discord.gg/ERpYMqS
|
||||
## Version 2021-08-12
|
||||
|
||||
version: "2.1"
|
||||
services:
|
||||
deluge:
|
||||
image: ghcr.io/linuxserver/deluge:latest
|
||||
container_name: deluge
|
||||
environment:
|
||||
- PUID=1000 # Utiliser la commande (en SSH) : id NOM_UTILISATEUR
|
||||
- PGID=1000 # Utiliser la commande (en SSH) : id NOM_UTILISATEUR
|
||||
ports:
|
||||
- 8112:8112
|
||||
volumes:
|
||||
- /volume1/docker/deluge/config:/config
|
||||
- /volume1/torrent:/downloads
|
||||
restart: unless-stopped
|
||||
labels:
|
||||
- com.centurylinklabs.watchtower.enable=true
|
23
docker-compose/gotify/docker-compose.yml
Normal file
23
docker-compose/gotify/docker-compose.yml
Normal file
|
@ -0,0 +1,23 @@
|
|||
## Discord Plex FR : https://discord.gg/ERpYMqS
|
||||
## Version 2021-08-12
|
||||
version: "2.1"
|
||||
services:
|
||||
gotify:
|
||||
image: gotify/server
|
||||
container_name: gotify
|
||||
labels:
|
||||
- "autoheal=true" # Voir autoheal pour relance automatique de container instable
|
||||
- com.centurylinklabs.watchtower.enable=true # Le label ci-dessous permet à Watchtower de faire les mises à jour automatiquement
|
||||
ports:
|
||||
- 2222:80 # Choisir un port de connexion libre sur votre machine, ce sera la port de connexion
|
||||
environment:
|
||||
- GOTIFY_DEFAULTUSER_PASS=custom
|
||||
- GOTIFY_DATABASE_DIALECT=sqlite3
|
||||
- GOTIFY_DATABASE_CONNECTION=data/gotify.db
|
||||
- GOTIFY_DEFAULTUSER_NAME=admin
|
||||
- GOTIFY_DEFAULTUSER_PASS=admin
|
||||
- GOTIFY_PASSSTRENGTH=10
|
||||
- GOTIFY_UPLOADEDIMAGESDIR=data/images
|
||||
- GOTIFY_PLUGINSDIR=data/plugins
|
||||
volumes:
|
||||
- /volume1/docker/gotify/data:/app/data
|
Loading…
Add table
Add a link
Reference in a new issue