Add Audiobookshelf-App
This commit is contained in:
parent
559a8d336e
commit
a9e71c5f6b
3
Audio/Audiobookshelf/LICENSE
Normal file
3
Audio/Audiobookshelf/LICENSE
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
Additional permission under GNU GPL version 3 section 7
|
||||||
|
|
||||||
|
If you modify this Program, or any covered work, by linking or combining it with [name of library] (or a modified version of that library), containing parts covered by the terms of [name of library's license], the licensors of this Program grant you additional permission to convey the resulting work. Corresponding Source for a non-source form of such a combination shall include the source code for the parts of [name of library] used as well as that of the covered work.
|
66
Audio/Audiobookshelf/README.md
Normal file
66
Audio/Audiobookshelf/README.md
Normal file
@ -0,0 +1,66 @@
|
|||||||
|

|
||||||
|
URL :
|
||||||
|
|
||||||
|
# Audiobookshelf
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
# Téléchargement, Configuration et Lancement
|
||||||
|
|
||||||
|
## Téléchargement de Audiobookshelf
|
||||||
|
|
||||||
|
Saisir la commande pour télécharger la source
|
||||||
|
```bash
|
||||||
|
git clone https://git.tips-of-mine.fr/Tips-Of-Mine/Docker.git
|
||||||
|
```
|
||||||
|
|
||||||
|
Saisir la commande pour vous rendre dans le dossier
|
||||||
|
```bash
|
||||||
|
cd Audio\Audiobookshelf
|
||||||
|
```
|
||||||
|
|
||||||
|
## Modifier la configuration de Audiobookshelf
|
||||||
|
|
||||||
|
Saisir la commande pour vous rendre dans le dossier
|
||||||
|
```bash
|
||||||
|
cd Audio\Audiobookshelf
|
||||||
|
```
|
||||||
|
|
||||||
|
Nous éditons le fichier de configuration
|
||||||
|
```bash
|
||||||
|
nano .env
|
||||||
|
```
|
||||||
|
|
||||||
|
Nous modifions les variables dont nous avons besoin.
|
||||||
|
|
||||||
|
## Lancement de Audiobookshelf
|
||||||
|
|
||||||
|
Pour utiliser Audiobookshelf tout seul
|
||||||
|
```bash
|
||||||
|
docker compose up -d
|
||||||
|
```
|
||||||
|
|
||||||
|
Pour utiliser Audiobookshelf avec Traefik
|
||||||
|
```bash
|
||||||
|
docker compose -f docker-compose-traefik.yml up -d
|
||||||
|
```
|
||||||
|
|
||||||
|
# Utilisation
|
||||||
|
|
||||||
|
## Accueil
|
||||||
|
|
||||||
|
Ouvrir une page web avec l'url :
|
||||||
|
Pour une utilisation tout seul
|
||||||
|
|
||||||
|
http://10.0.4.29:80
|
||||||
|
|
||||||
|
Pour une utilisation avec Traefik
|
||||||
|
|
||||||
|
https://Audiobookshelf.10.0.4.29.traefik.me`)"
|
||||||
|
|
||||||
|
|
||||||
|
# More info
|
||||||
|
- more information on the website [Tips-Of-Mine](https://www.tips-of-mine.fr/)
|
||||||
|
|
||||||
|
# Buy me a coffe
|
||||||
|
<a href='https://ko-fi.com/R5R2KNI3N' target='_blank'><img height='36' style='border:0px;height:36px;' src='https://storage.ko-fi.com/cdn/kofi4.png?v=3' border='0' alt='Buy Me a Coffee at ko-fi.com' /></a>
|
32
Audio/Audiobookshelf/docker-compose-traefik.yml
Normal file
32
Audio/Audiobookshelf/docker-compose-traefik.yml
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
#### NETWORKS
|
||||||
|
networks:
|
||||||
|
docker-traefik_front_network:
|
||||||
|
external: true
|
||||||
|
back_network:
|
||||||
|
driver: bridge
|
||||||
|
attachable: true
|
||||||
|
|
||||||
|
#### SERVICES
|
||||||
|
services:
|
||||||
|
audiobookshelf:
|
||||||
|
container_name: audiobookshelf-app
|
||||||
|
hostname: audiobookshelf-app
|
||||||
|
image: ghcr.io/advplyr/audiobookshelf:latest
|
||||||
|
networks:
|
||||||
|
- docker-traefik_front_network
|
||||||
|
volumes:
|
||||||
|
- ./audiobooks:/audiobooks
|
||||||
|
labels:
|
||||||
|
- "traefik.enable=true"
|
||||||
|
- "traefik.docker.network=docker-traefik_front_network"
|
||||||
|
## HTTP
|
||||||
|
- "traefik.http.routers.audiobookshelf-http.rule=Host(`audiobookshelf.10.0.4.29.traefik.me`)"
|
||||||
|
- "traefik.http.routers.audiobookshelf-http.entrypoints=http"
|
||||||
|
## HTTPS
|
||||||
|
- "traefik.http.routers.audiobookshelf-https.rule=Host(`audiobookshelf.10.0.4.29.traefik.me`)"
|
||||||
|
- "traefik.http.routers.audiobookshelf-https.entrypoints=https"
|
||||||
|
- "traefik.http.routers.audiobookshelf-https.tls=true"
|
||||||
|
- "traefik.http.routers.audiobookshelf.service=audiobookshelf-service"
|
||||||
|
## Middleware
|
||||||
|
## Service
|
||||||
|
- "traefik.http.services.audiobookshelf-service.loadbalancer.server.port=3000"
|
18
Audio/Audiobookshelf/docker-compose.yml
Normal file
18
Audio/Audiobookshelf/docker-compose.yml
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
#### NETWORKS
|
||||||
|
networks:
|
||||||
|
back_network:
|
||||||
|
driver: bridge
|
||||||
|
attachable: true
|
||||||
|
|
||||||
|
#### SERVICES
|
||||||
|
services:
|
||||||
|
audiobookshelf:
|
||||||
|
container_name: audiobookshelf-app
|
||||||
|
hostname: audiobookshelf-app
|
||||||
|
image: ghcr.io/advplyr/audiobookshelf:latest
|
||||||
|
ports:
|
||||||
|
- 80:80
|
||||||
|
networks:
|
||||||
|
- back_network
|
||||||
|
volumes:
|
||||||
|
- ./audiobooks:/audiobooks
|
BIN
Audio/Audiobookshelf/img/logo-Audacity.png
Normal file
BIN
Audio/Audiobookshelf/img/logo-Audacity.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 30 KiB |
Loading…
x
Reference in New Issue
Block a user