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,57 @@
# Nginx Proxy Manager
services:
nginx-proxy-manager:
image: jc21/nginx-proxy-manager:latest
container_name: nginx-proxy-manager
restart: unless-stopped
ports:
- "80:80"
- "443:443"
- "81:81"
volumes:
- ./data:/data
- ./letsencrypt:/etc/letsencrypt
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/Prague
- DISABLE_IPV6=true
networks:
- npm_net
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:81"]
interval: 30s
timeout: 10s
retries: 3
start_period: 30s
logging:
driver: json-file
options:
max-size: "10m"
max-file: "3"
# NPM vyžaduje vlastní MariaDB backend
db:
image: jc21/mariadb-aria:latest
container_name: npm_db
restart: unless-stopped
volumes:
- ./mysql:/var/lib/mysql
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/Prague
- MYSQL_ROOT_PASSWORD=CHANGE_ME
networks:
- npm_net
logging:
driver: json-file
options:
max-size: "10m"
max-file: "3"
networks:
npm_net:
name: nginx_proxy_manager_default
driver: bridge