Merge branch 'rushic24-booksonic' into develop
This commit is contained in:
commit
b9bbda4340
11 changed files with 40 additions and 2 deletions
4
.gitignore
vendored
4
.gitignore
vendored
|
@ -15,13 +15,13 @@ state/*
|
|||
|
||||
media/data/movies/*
|
||||
media/data/tv/*
|
||||
media/data/books/spoken/*
|
||||
media/data/books/audiobooks/*
|
||||
media/data/books/ebooks/*
|
||||
!media/data/movies/.gitkeep
|
||||
!media/data/tv/.gitkeep
|
||||
!media/data/books/metadata.db
|
||||
!media/data/books/ebooks/.gitkeep
|
||||
!media/data/books/spoken/.gitkeep
|
||||
!media/data/books/audiobooks/.gitkeep
|
||||
|
||||
media/torrents/complete/*
|
||||
!media/torrents/complete/.gitkeep
|
||||
|
|
|
@ -21,6 +21,7 @@ Check our demo instance : **95.179.210.152** / username: **user@runtipi.com** /
|
|||
|
||||
## Apps available
|
||||
- [Adguard Home](https://github.com/AdguardTeam/AdGuardHome) - Adguard Home DNS adblocker
|
||||
- [Booksonic](https://github.com/popeen) - A server for streaming your audiobooks
|
||||
- [Calibre-Web](https://github.com/janeczku/calibre-web) - Web Ebook Reader
|
||||
- [Code-Server](https://github.com/coder/code-server) - Web VS Code
|
||||
- [Filebrowser](https://github.com/filebrowser/filebrowser) - Web File Browser
|
||||
|
|
13
apps/booksonic/config.json
Normal file
13
apps/booksonic/config.json
Normal file
|
@ -0,0 +1,13 @@
|
|||
{
|
||||
"name": "Booksonic",
|
||||
"available": true,
|
||||
"port": 8040,
|
||||
"id": "booksonic",
|
||||
"categories": ["books", "media"],
|
||||
"description": "",
|
||||
"short_desc": "The selfhosted audiobook server",
|
||||
"author": "https://github.com/popeen",
|
||||
"source": "https://github.com/popeen/Booksonic-Air",
|
||||
"image": "/logos/apps/booksonic.jpg",
|
||||
"form_fields": []
|
||||
}
|
19
apps/booksonic/docker-compose.yml
Normal file
19
apps/booksonic/docker-compose.yml
Normal file
|
@ -0,0 +1,19 @@
|
|||
version: "3.9"
|
||||
services:
|
||||
booksonic:
|
||||
image: lscr.io/linuxserver/booksonic-air:latest
|
||||
container_name: booksonic
|
||||
environment:
|
||||
- PUID=1000
|
||||
- PGID=1000
|
||||
- TZ=${TZ}
|
||||
volumes:
|
||||
- ${APP_DATA_DIR}/config:/config
|
||||
- ${ROOT_FOLDER_HOST}/media/data/books/audiobooks:/audiobooks
|
||||
- ${ROOT_FOLDER_HOST}/media/data/podcasts:/podcasts
|
||||
ports:
|
||||
- ${APP_PORT}:4040
|
||||
restart: unless-stopped
|
||||
networks:
|
||||
- tipi_main_network
|
||||
|
5
apps/booksonic/metadata/description.md
Normal file
5
apps/booksonic/metadata/description.md
Normal file
|
@ -0,0 +1,5 @@
|
|||
Booksonic Air is a server for hosting the audiobooks you own and reach them from wherever you are.
|
||||
|
||||
Check out [Booksonic App](https://github.com/popeen/Booksonic-App) for connecting to Booksonic servers.
|
||||
<br />
|
||||
Once installed you can setup the following folders : /audiobooks, /podcasts
|
0
media/data/audiobooks/.gitkeep
Normal file
0
media/data/audiobooks/.gitkeep
Normal file
0
media/data/books/audiobooks/.gitkeep
Normal file
0
media/data/books/audiobooks/.gitkeep
Normal file
0
media/data/othermedia/.keep
Normal file
0
media/data/othermedia/.keep
Normal file
0
media/data/podcasts/.gitkeep
Normal file
0
media/data/podcasts/.gitkeep
Normal file
BIN
packages/dashboard/public/logos/apps/booksonic.jpg
Normal file
BIN
packages/dashboard/public/logos/apps/booksonic.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 39 KiB |
Loading…
Add table
Reference in a new issue