- docker-services: 14 generic compose templates (portainer, npm, vaultwarden, gitea, jotty, nextcloud-aio, rustdesk, audiobookshelf, calibre-web, plex, erugo, jswiki, speedtest, watchtower) - install-scripts: bash scripts for Ubuntu server bootstrap, docker, portainer, npm, backup, restore - ansible: 4 playbooks (bootstrap, deploy-services, update-services, security-hardening) + roles skeleton - hermes-install: Hermes CLI setup on macOS - macos-setup: Brewfile + osx-defaults + fish-config - home-nas-tools: metadata index for NAS projects (no binaries) - docs: architecture, security, contributing - README, LICENSE (MIT), .gitignore
30 lines
597 B
YAML
30 lines
597 B
YAML
# Audiobookshelf – audio knihovna
|
||
|
||
services:
|
||
audiobookshelf:
|
||
image: advplyr/audiobookshelf:latest
|
||
container_name: audiobookshelf
|
||
restart: unless-stopped
|
||
ports:
|
||
- "13378:80"
|
||
volumes:
|
||
- ./data:/data
|
||
- ./audiobooks:/audiobooks
|
||
- ./podcasts:/podcasts
|
||
environment:
|
||
- PUID=1000
|
||
- PGID=1000
|
||
- TZ=Europe/Prague
|
||
networks:
|
||
- audiobookshelf_net
|
||
logging:
|
||
driver: json-file
|
||
options:
|
||
max-size: "10m"
|
||
max-file: "3"
|
||
|
||
networks:
|
||
audiobookshelf_net:
|
||
name: audiobookshelf_default
|
||
driver: bridge
|