feat: initial infra repo

- 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
This commit is contained in:
2026-08-01 16:25:58 +02:00
commit 444191d16d
73 changed files with 4032 additions and 0 deletions
@@ -0,0 +1,4 @@
# Audiobookshelf proměnné
TZ=Europe/Prague
PUID=1000
PGID=1000
+57
View File
@@ -0,0 +1,57 @@
# Audiobookshelf audio knihovna
> Self-hosted audio knihovna. Stream audioknih, podcastů. Sledování pokroku.
## 📋 Přehled
- **Image:** `advplyr/audiobookshelf:latest`
- **Port:** `13378` (web)
- **User:** `1000:1000`
- **Network:** `bridge`
## 🚀 Instalace
```bash
cp .env.example .env
docker compose up -d
```
## 🌐 Přístup
- **Web:** `http://<server>:13378`
- **Mobile app:** vyhledej "Audiobookshelf" v App Store/Google Play
## 🎯 Funkce
- **Audioknihy** upload (mp3, m4b, m4a, flac, …)
- **Podcasty** RSS subscribe
- **Progress tracking** synchronizace mezi zařízeními
- **Multi-user** každý má svou knihovnu
- **Transkripce** vyhledávání v textu (s AI)
- **OPDS** kompatibilní s jinými čtečkami
## 📁 Volumes
| Mount | Účel |
|---|---|
| `./data:/data` | Databáze, config, cache |
| `./audiobooks:/audiobooks` | Tvoje knihovna (readonly) |
| `./podcasts:/podcasts` | Auto-download podcasty |
## 🔐 Bezpečnost
- **2FA** pro admin účet
- **HTTPS** terminuj v NPM
- **Auth proxy** integrovaný (OIDC)
## 🔄 Aktualizace
```bash
docker compose pull
docker compose up -d
```
## 📚 Dokumentace
- [Audiobookshelf](https://www.audiobookshelf.org/)
- [GitHub](https://github.com/advplyr/audiobookshelf)
@@ -0,0 +1,29 @@
# 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