diff --git a/docker-compose/handbrake-mediainfo-avidemux-makemkv-mkvtoolnix/.env b/docker-compose/handbrake-mediainfo-avidemux-makemkv-mkvtoolnix/.env new file mode 100644 index 0000000..6d805a0 --- /dev/null +++ b/docker-compose/handbrake-mediainfo-avidemux-makemkv-mkvtoolnix/.env @@ -0,0 +1,9 @@ +PUID=1000 +GUID=100 +TZ=Europe/Paris + +DISPLAY_WIDTH=1280 +DISPLAY_HEIGHT=768 + +RACINE=/volume1/docker/edition-videos +STORAGE=/storage \ No newline at end of file diff --git a/docker-compose/handbrake-mediainfo-avidemux-makemkv-mkvtoolnix/docker-compose.yml b/docker-compose/handbrake-mediainfo-avidemux-makemkv-mkvtoolnix/docker-compose.yml new file mode 100644 index 0000000..a9c201e --- /dev/null +++ b/docker-compose/handbrake-mediainfo-avidemux-makemkv-mkvtoolnix/docker-compose.yml @@ -0,0 +1,115 @@ +## Discord Plex FR : https://discord.gg/3gtABCH +## Version 2021-08-23 +## +## Pour une aide à l'installation, consulter le README +## +version: '3' + +services: + handbrake: + image: jlesage/handbrake:latest + container_name: edition-video_handbrake +# labels: +# - com.centurylinklabs.watchtower.enable=true + networks: + - edition-videos-network + environment: + - USER_ID=${PUID} + - GROUP_ID=${PGID} + - TZ=${TZ} + - DISPLAY_WIDTH=${DISPLAY_WIDTH} + - DISPLAY_HEIGHT=${DISPLAY_HEIGHT} + ports: + - "6800:5800" + volumes: + - "${RACINE}/handbrake/config:/config:rw" + - "${RACINE}/handbrake/watch:/watch:rw" + - "${RACINE}/handbrake/output:/output:rw" + - "${STORAGE}:/storage:ro" + restart: unless-stopped + + mediainfo: + image: jlesage/mediainfo:latest + container_name: edition-video_mediainfo +# labels: +# - com.centurylinklabs.watchtower.enable=true + networks: + - edition-videos-network + environment: + - USER_ID=${PUID} + - GROUP_ID=${PGID} + - TZ=${TZ} + - DISPLAY_WIDTH=${DISPLAY_WIDTH} + - DISPLAY_HEIGHT=${DISPLAY_HEIGHT} + ports: + - 6801:5800 + volumes: + - "${RACINE}/mediainfo/config:/config:rw" + - "${STORAGE}:/storage:ro" + restart: unless-stopped + + avidemux: + image: jlesage/avidemux:latest + container_name: edition-video_avidemux +# labels: +# - com.centurylinklabs.watchtower.enable=true + networks: + - edition-videos-network + environment: + - USER_ID=${PUID} + - GROUP_ID=${PGID} + - TZ=${TZ} + - DISPLAY_WIDTH=${DISPLAY_WIDTH} + - DISPLAY_HEIGHT=${DISPLAY_HEIGHT} + ports: + - 6802:5800 + volumes: + - "${RACINE}/avidemux/config:/config:rw" + - "${STORAGE}:/storage:rw" + restart: unless-stopped + + makemkv: + image: jlesage/makemkv:latest + container_name: edition-video_makemkv +# labels: +# - com.centurylinklabs.watchtower.enable=true + networks: + - edition-videos-network + environment: + - USER_ID=${PUID} + - GROUP_ID=${PGID} + - TZ=${TZ} + - DISPLAY_WIDTH=${DISPLAY_WIDTH} + - DISPLAY_HEIGHT=${DISPLAY_HEIGHT} + ports: + - 6803:5800 + volumes: + - "${RACINE}/makemkv/config:/config:rw" + - "${RACINE}/makemkv/output:/output:rw" + - "${STORAGE}:/storage:ro" + restart: unless-stopped + + mkvtoolnix: + image: jlesage/mkvtoolnix:latest + container_name: edition-video_mkvtoolnix +# labels: +# - com.centurylinklabs.watchtower.enable=true + networks: + - edition-videos-network + environment: + - USER_ID=${PUID} + - GROUP_ID=${PGID} + - TZ=${TZ} + - DISPLAY_WIDTH=${DISPLAY_WIDTH} + - DISPLAY_HEIGHT=${DISPLAY_HEIGHT} + ports: + - 6804:5800 + volumes: + - "${RACINE}/makemkv/config:/config:rw" + - "${STORAGE}:/storage:ro" + restart: unless-stopped + +networks: + edition-videos-network: + external: + name: edition-videos-network diff --git a/docker-compose/handbrake-mediainfo-avidemux-makemkv-mkvtoolnix/readme.md b/docker-compose/handbrake-mediainfo-avidemux-makemkv-mkvtoolnix/readme.md new file mode 100644 index 0000000..340b266 --- /dev/null +++ b/docker-compose/handbrake-mediainfo-avidemux-makemkv-mkvtoolnix/readme.md @@ -0,0 +1,59 @@ +Installation de la stack "Édition-Vidéos" +============ + +Bienvenue sur mon nouveau tutoriel. Celui-ci, je l'espere va vous apprendre à installer Handbrake, Mediainfo, Avidemux, MakeMKV et MKVToolNix simplement via docker. + +Cette stack docker-compose contient les logiciels suivants : +| Nom du service | Site Officiel | Dépot utilisé* | +| ------ | ------ | ------ | +| Handbrake | [Handbrake.fr](https://handbrake.fr/) | [jlesage](https://github.com/jlesage/docker-handbrake) | +| Mediainfo | [MediaArea](https://mediaarea.net/fr/MediaInfo) | [jlesage](https://github.com/jlesage/docker-mediainfo) | +| Avidemux | [Fixounet](http://fixounet.free.fr/avidemux/) | [jlesage](https://github.com/jlesage/docker-avidemux) | +| MakeMKV | [GuinpinSoft](http://makemkv.com/) | [jlesage](https://github.com/jlesage/docker-makemkv) | +| MKVToolNix | [Moritz Bunkus](https://mkvtoolnix.download/) | [jlesage](https://github.com/jlesage/docker-mkvtoolnix) | + +## Table des matières +- 1. [Prérequis](#1-prérequis) + - 1.a [Création des dossiers](#1-a-création-des-dossiers) + - 1.b [Modifications du .env](#1-b-modifications-du-env) + - 1.c [Transfert des fichiers dans /edition-videos](#1-c-transfert-des-fichiers-dans-edition-videos) +- 2. [Création des conteneurs](#2-création-des-conteneurs) + - 2.a [Création du réseau](#2-a-création-du-réseau) + - 2.b [Création des conteneurs](#2-b-création-des-conteneurs) +- 3. [Les Bases](#3-les-bases) + - 3.a [Commandes de bases ( Docker )](#3-a-commandes-de-bases-docker) + - 3.b [Accès aux interfaces ( WebUI )](#3-b-accès-aux-interfaces-webui) +- 4. Dépannage ( Ce construira au fur et a mesure des questions ) + +## 1. Prérequis + +- Cette stack est concu pour fonctionner dans un dossier `downloads-vpn`, avec l'architecture suivante : +``` +edition-videos ---- handbrake ------- config + | |_ watch + | |_ output + | + |-- mediainfo ------ config + | + |-- avidemux ------- config + | + |-- makemkv -------- config + | |_ output + | + |-- mkvtoolnix ----- config +``` + +- Dans le paragraphe 1.a nous allons les créer avec une ligne de commande, et dans le paragraphe 1.b nous allons modifier le .env afin qu'il utilise bien ces dossiers ( en fonction de leurs localisation sur votre machine ). + +### 1.a. Création des dossiers + +- Avec `cd` aller dans le dossier de votre choix, par exemple "docker". +Exemple : Si votre dossier "docker" ce trouve dans /volume1, alors la commande sera : +`cd /volume1/docker` + +- Maintenant que nous sommes dans le bon dossier, nous allons executer la commande suivante pour créer d'un coup, toute l'architecture nécessaire : + +`mkdir -p edition-videos/handbrake/{config,watch,output} edition-videos/mediainfo/config edition-videos/avidemux/config edition-videos/makemkv/{config,output} edition-videos/mkvtoolnix/config` + +### 1.b. Modifications des .env +... \ No newline at end of file