This repository has been archived on 2023-12-29. You can view files and clone it, but cannot push or open issues or pull requests.
pi-ansible/roles/docker_services/defaults/main.yml

62 lines
1.4 KiB
YAML
Raw Normal View History

# vim: ft=yaml.ansible
2022-12-21 21:25:10 +00:00
---
2023-04-06 17:26:22 +00:00
base_domain: sapti.me
2022-12-22 19:18:27 +00:00
base_volume: "{{ hdd_mount_point }}/apps"
2022-12-21 21:25:10 +00:00
services:
caddy:
2022-12-22 16:58:48 +00:00
volume: "{{ base_volume }}/caddy"
2022-12-21 21:25:10 +00:00
version: 2-alpine
2023-01-14 17:06:21 +00:00
postfix:
2023-04-06 17:26:22 +00:00
domain: smtp.{{ base_domain }}
2023-01-14 17:06:21 +00:00
volume: "{{ base_volume }}/postfix"
version: latest-alpine
2023-01-06 13:48:20 +00:00
emby:
domain: watch.{{ base_domain }}
volume: "{{ base_volume }}/emby"
version: latest
2022-12-21 21:25:10 +00:00
2023-01-06 13:48:20 +00:00
monerod:
domain: xmr.{{ base_domain }}
version: latest
2022-12-21 21:25:10 +00:00
nextcloud:
2023-01-03 21:30:22 +00:00
domain: cloud.{{ base_domain }}
2022-12-22 16:58:48 +00:00
volume: "{{ base_volume }}/nextcloud"
2023-04-08 14:49:12 +00:00
version: 26-apache
2022-12-26 11:45:54 +00:00
postgres_version: 14-alpine
2022-12-21 21:25:10 +00:00
redis_version: 7-alpine
2023-01-06 13:48:20 +00:00
snowflake:
2022-12-23 17:28:01 +00:00
version: latest
2022-12-21 21:25:10 +00:00
2023-05-28 15:58:12 +00:00
pihole:
volume: "{{ base_volume }}/pi-hole"
2023-05-28 21:57:19 +00:00
version: 2023.05.1
2023-05-28 18:01:35 +00:00
unbound_version: latest
2023-05-28 15:58:12 +00:00
2022-12-21 21:25:10 +00:00
wireguard:
2023-01-03 21:30:22 +00:00
domain: wg01.vpn.{{ base_domain }}
2022-12-22 16:58:48 +00:00
volume: "{{ base_volume }}/wireguard"
version: arm64v8-alpine
2022-12-21 21:25:10 +00:00
2023-01-06 13:48:20 +00:00
restic:
repo: /restic
2023-03-07 21:28:32 +00:00
version: '1.7'
2023-01-06 13:48:20 +00:00
watchtower:
2023-02-11 19:07:48 +00:00
version: arm64v8-1.5.3
2023-01-14 17:06:21 +00:00
sender_domains:
- "{{ services.nextcloud.domain }}"
2023-05-28 20:48:22 +00:00
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"