blob: 97935f8a8eabf7be839d86841210812706dae410 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
captainVersion: 4
services:
$$cap_appname:
image: ghcr.io/advplyr/audiobookshelf:$$cap_version
volumes:
- $$cap_appname-config:/config
- $$cap_path_to_audiobooks:/audiobooks
- $$cap_path_to_podcasts:/podcasts
- $$cap_path_to_metadata:/metadata
restart: always
caproverOneClickApp:
variables:
- id: '$$cap_version'
label: Audiobookshelf Version
defaultValue: '2.2.14'
description: Check out their Docker page for the valid tags https://hub.docker.com/r/advplyr/audiobookshelf/tags
validRegex: '/.{1,}/'
- id: $$cap_path_to_audiobooks
label: Location of audiobooks directory
description: full path to the directory where the audiobooks are stored. Path on host MUST exist for the app to start!
validRegex: /\/[^\s-][a-zA-Z0-9_\/-]*[^\/][^\s-]/
- id: $$cap_path_to_podcasts
label: Location of podcasts directory
description: full path to the directory where the podcasts are stored. Path on host MUST exist for the app to start!
validRegex: /\/[^\s-][a-zA-Z0-9_\/-]*[^\/][^\s-]/
- id: $$cap_path_to_metadata
label: Location of metadata directory
description: full path to the directory where the metadata is stored. Path on host MUST exist for the app to start!
validRegex: /\/[^\s-][a-zA-Z0-9_\/-]*[^\/][^\s-]/
instructions:
start: |-
Audiobookshelf is a self-hosted audiobook and podcast server. Official Docker image.
end: |-
Audiobookshelf has been succesfully deployed!
It is available at http://$$cap_appname.$$cap_root_domain or at 123.123.123.123:13378
displayName: Audiobookshelf
isOfficial: true
description: Audiobookshelf is a self-hosted audiobook and podcast server.
documentation: See https://www.audiobookshelf.org/docs
|