mirror of
https://github.com/FAUSheppy/no-secrets-athq-ansible
synced 2025-12-06 07:51:35 +01:00
add: gotify docker setup
This commit is contained in:
@@ -45,6 +45,9 @@ SOUNDLIB_AWS_ACCESS_KEY_ID: HISTORY_PURGED_SECRET
|
||||
SOUNDLIB_AWS_SECRET_ACCESS_KEY: HISTORY_PURGED_SECRET
|
||||
SOUNDLIB_S3_ENDPOINT: HISTORY_PURGED_SECRET
|
||||
|
||||
# gotify #
|
||||
gotify_user: admin
|
||||
gotify_password: HISTORY_PURGED_SECRET
|
||||
|
||||
# overwritten in monitoring master group var
|
||||
monitoring_master: false
|
||||
|
||||
@@ -57,6 +57,7 @@
|
||||
- python-flask-picture-factory
|
||||
- money-balancer
|
||||
- atlantis-web-check
|
||||
- gotify
|
||||
|
||||
- name: Copy AtlantisHub config
|
||||
copy:
|
||||
@@ -105,6 +106,7 @@
|
||||
- python-flask-picture-factory
|
||||
- money-balancer
|
||||
- atlantis-web-check
|
||||
- gotify
|
||||
|
||||
- name: Copy compose templates
|
||||
template:
|
||||
@@ -127,6 +129,7 @@
|
||||
- python-flask-picture-factory
|
||||
- money-balancer
|
||||
- atlantis-web-check
|
||||
- gotify
|
||||
|
||||
- name: Log into private registry
|
||||
docker_login:
|
||||
@@ -157,6 +160,7 @@
|
||||
- python-flask-picture-factory
|
||||
- money-balancer
|
||||
- atlantis-web-check
|
||||
- gotify
|
||||
|
||||
- name: OAuth2Proxy directories
|
||||
file:
|
||||
|
||||
11
roles/docker-deployments/templates/gotify.yaml
Normal file
11
roles/docker-deployments/templates/gotify.yaml
Normal file
@@ -0,0 +1,11 @@
|
||||
gotify:
|
||||
image: gotify/server
|
||||
restart: always
|
||||
environment:
|
||||
- TZ="Europe/Berlin"
|
||||
- GOTIFY_DEFAULTUSER_NAME={{ gotify_user }}
|
||||
- GOTIFY_DEFAULTUSER_PASS={{ gotify_password }}
|
||||
ports:
|
||||
- 4001:80
|
||||
volumes:
|
||||
- /data/gotify/data:/app/data
|
||||
Reference in New Issue
Block a user