mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2025-01-22 00:07:52 +01:00
Add: Docker compose example and readme #164
This commit is contained in:
parent
e564c80ed2
commit
8a684ccdc4
12
docker-compose.yml
Normal file
12
docker-compose.yml
Normal file
@ -0,0 +1,12 @@
|
||||
### EXAMPLE DOCKER COMPOSE ###
|
||||
version: "3.7"
|
||||
|
||||
services:
|
||||
app:
|
||||
image: advplyr/audiobookshelf
|
||||
ports:
|
||||
- 13378:80
|
||||
volumes:
|
||||
- /audiobooks:/audiobooks
|
||||
- /metadata:/metadata
|
||||
- /config:/config
|
16
readme.md
16
readme.md
@ -58,6 +58,22 @@ docker run -d \
|
||||
--rm advplyr/audiobookshelf
|
||||
```
|
||||
|
||||
### Running with Docker Compose
|
||||
|
||||
```bash
|
||||
### docker-compose.yml ###
|
||||
services:
|
||||
app:
|
||||
image: advplyr/audiobookshelf
|
||||
ports:
|
||||
- 13378:80
|
||||
volumes:
|
||||
- <path/to/your/audiobooks>:/audiobooks
|
||||
- <path/to/metadata>:/metadata
|
||||
- <path/to/config>:/config
|
||||
```
|
||||
|
||||
|
||||
### Linux (amd64) Install
|
||||
|
||||
A simple installer is added to setup the initial config. If you already have audiobooks, you can enter the path to your audiobooks during the install. The installer will create a user and group named `audiobookshelf`.
|
||||
|
Loading…
Reference in New Issue
Block a user