- 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
29 lines
653 B
YAML
29 lines
653 B
YAML
---
|
||
# Ukázkový inventory – zkopíruj na inventory.yml a uprav
|
||
all:
|
||
vars:
|
||
# SSH uživatel (deploy user, UID 1000)
|
||
ansible_user: deploy
|
||
# Python na cílovém systému
|
||
ansible_python_interpreter: /usr/bin/python3
|
||
# Timezone
|
||
timezone: Europe/Prague
|
||
|
||
children:
|
||
# Skupina pro všechny home servery
|
||
homeservers:
|
||
hosts:
|
||
homeserver-01:
|
||
ansible_host: 192.168.0.148
|
||
# homeserver-02:
|
||
# ansible_host: 192.168.0.149
|
||
|
||
# Skupina pro produkční servery
|
||
production:
|
||
hosts:
|
||
homeserver-01:
|
||
ansible_host: 192.168.0.148
|
||
|
||
# Skupina pro test
|
||
staging: []
|