41 lines
728 B
YAML
41 lines
728 B
YAML
version: "2.4"
|
|
|
|
services:
|
|
audiobookshelf:
|
|
container_name: audiobookshelf
|
|
image: ghcr.io/advplyr/audiobookshelf
|
|
pids_limit: 2048
|
|
user: 3000:3000
|
|
ports:
|
|
- "80:13378"
|
|
|
|
networks:
|
|
DMZ:
|
|
ipv4_address: 10.10.12.24
|
|
|
|
volumes:
|
|
- type: volume
|
|
source: audiobookshelf_data
|
|
target: /config
|
|
|
|
- type: volume
|
|
source: audiobookshelf_data
|
|
target: /metadata
|
|
volume:
|
|
subpath: metadata
|
|
|
|
- type: volume
|
|
source: audiobookshelf_data_audiobooks
|
|
target: /audiobooks
|
|
|
|
volumes:
|
|
audiobookshelf_data:
|
|
external: true
|
|
|
|
audiobookshelf_data_audiobooks:
|
|
external: true
|
|
|
|
networks:
|
|
DMZ:
|
|
external: true
|
|
name: DMZ |