62 lines
1.4 KiB
YAML
62 lines
1.4 KiB
YAML
# vim: ft=yaml.ansible
|
|
---
|
|
base_domain: sapti.me
|
|
base_volume: "{{ hdd_mount_point }}/apps"
|
|
|
|
services:
|
|
caddy:
|
|
volume: "{{ base_volume }}/caddy"
|
|
version: 2-alpine
|
|
|
|
postfix:
|
|
domain: smtp.{{ base_domain }}
|
|
volume: "{{ base_volume }}/postfix"
|
|
version: latest-alpine
|
|
|
|
emby:
|
|
domain: watch.{{ base_domain }}
|
|
volume: "{{ base_volume }}/emby"
|
|
version: latest
|
|
|
|
monerod:
|
|
domain: xmr.{{ base_domain }}
|
|
version: latest
|
|
|
|
nextcloud:
|
|
domain: cloud.{{ base_domain }}
|
|
volume: "{{ base_volume }}/nextcloud"
|
|
version: 26-apache
|
|
postgres_version: 14-alpine
|
|
redis_version: 7-alpine
|
|
|
|
snowflake:
|
|
version: latest
|
|
|
|
pihole:
|
|
volume: "{{ base_volume }}/pi-hole"
|
|
version: 2023.05.1
|
|
unbound_version: latest
|
|
|
|
wireguard:
|
|
domain: wg01.vpn.{{ base_domain }}
|
|
volume: "{{ base_volume }}/wireguard"
|
|
version: arm64v8-alpine
|
|
|
|
restic:
|
|
repo: /restic
|
|
version: '1.7'
|
|
|
|
watchtower:
|
|
version: arm64v8-1.5.3
|
|
|
|
sender_domains:
|
|
- "{{ services.nextcloud.domain }}"
|
|
|
|
backup_volumes:
|
|
- "{{ services.caddy.volume }}:/mnt/volumes/caddy:ro"
|
|
- "{{ services.postfix.volume }}:/mnt/volumes/postfix:ro"
|
|
- "{{ services.emby.volume }}/programdata:/mnt/volumes/emby/programdata:ro"
|
|
- "{{ services.nextcloud.volume }}:/mnt/volumes/nextcloud:ro"
|
|
- "{{ services.pihole.volume }}:/mnt/volumes/pi-hole:ro"
|
|
- "{{ services.wireguard.volume }}:/mnt/volumes/wireguard:ro"
|