mirror of
https://github.com/FAUSheppy/no-secrets-athq-ansible
synced 2025-12-06 08:41:37 +01:00
chore: update to docker compose v2
This commit is contained in:
@@ -143,9 +143,10 @@
|
||||
password: HISTORY_PURGED_SECRET
|
||||
|
||||
- name: Deploy compose templates
|
||||
community.docker.docker_compose:
|
||||
community.docker.docker_compose_v2:
|
||||
project_src: "/opt/{{ item }}/"
|
||||
pull: true
|
||||
pull: "missing"
|
||||
remove_orphans: true
|
||||
files:
|
||||
- "{{ item }}.yaml"
|
||||
with_items:
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
async-icinga:
|
||||
services:
|
||||
async-icinga:
|
||||
volumes:
|
||||
- "/data/async-icinga/:/app/config"
|
||||
- "/data/async-icinga/instance/:/app/instance/"
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
athqlanding:
|
||||
services:
|
||||
athqlanding:
|
||||
ports:
|
||||
- 5002:5000
|
||||
image: registry.atlantishq.de/athq/landing-page
|
||||
- 5002:5000
|
||||
image: harbor-registry.atlantishq.de/atlantishq/athq-landing-page
|
||||
restart: always
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
atlantis-hub:
|
||||
image: registry.atlantishq.de/atlantis-hub:latest
|
||||
services:
|
||||
atlantis-hub:
|
||||
image: harbor-registry.atlantishq.de/atlantishq/atlantis-hub:latest
|
||||
restart: always
|
||||
ports:
|
||||
- 6011:5000
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
atlantis-verify:
|
||||
services:
|
||||
atlantis-verify:
|
||||
image: harbor-registry.atlantishq.de/atlantishq/atlantis-verify:latest
|
||||
restart: always
|
||||
environment:
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
version: "3.3"
|
||||
services:
|
||||
master:
|
||||
image: harbor-registry.atlantishq.de/atlantishq/atlantis-webcheck-master:latest
|
||||
|
||||
@@ -1,40 +1,41 @@
|
||||
event-dispatcher:
|
||||
ports:
|
||||
- 5007:5000
|
||||
image: registry.atlantishq.de/athq/event-dispatcher
|
||||
restart: always
|
||||
volumes:
|
||||
- "/data/event-dispatcher/instance/:/app/instance/"
|
||||
environment:
|
||||
LDAP_SERVER : "{{ ldap_connection_url }}"
|
||||
LDAP_BIND_DN : "{{ ldap_bind_dn }}"
|
||||
LDAP_BIND_PW : "{{ ldap_password }}"
|
||||
LDAP_BASE_DN : "{{ ldap_user_dn }}"
|
||||
|
||||
DISPATCH_ACCESS_TOKEN: "{{ event_dispatcher_pass }}"
|
||||
SETTINGS_ACCESS_TOKEN: "{{ notification_settings_access_token }}"
|
||||
|
||||
event-dispatcher-worker:
|
||||
image: registry.atlantishq.de/athq/event-dispatcher-worker
|
||||
|
||||
restart: always
|
||||
environment:
|
||||
|
||||
DISPATCH_SERVER: "{{ event_dispatcher_proto }}://{{ event_dispatcher_host }}"
|
||||
DISPATCH_ACCESS_TOKEN: "{{ event_dispatcher_pass }}"
|
||||
|
||||
NTFY_PUSH_TARGET: "{{ ntfy_push_target }}"
|
||||
NTFY_USER: "admin"
|
||||
NTFY_PASS: "{{ ntfy_api_access_token }}"
|
||||
NTFY_API_SERVER: "{{ ntfy_api_target }}"
|
||||
NTFY_API_TOKEN: "{{ ntfy_api_access_token }}"
|
||||
|
||||
LDAP_SERVER : "{{ ldap_connection_url }}"
|
||||
LDAP_BIND_DN : "{{ ldap_bind_dn }}"
|
||||
LDAP_BIND_PW : "{{ ldap_password }}"
|
||||
LDAP_BASE_DN : "{{ ldap_user_dn }}"
|
||||
|
||||
SMTP_TARGET: "{{ smtp_internal_host }}"
|
||||
SMTP_PORT: "{{ smtp_internal_host_port }}"
|
||||
SMTP_USER: "{{ smtp_service_user }}@atlantishq.de"
|
||||
SMTP_PASS: "{{ smtp_service_pass }}"
|
||||
services:
|
||||
event-dispatcher:
|
||||
ports:
|
||||
- 5007:5000
|
||||
image: harbor-registry.atlantishq.de/atlantishq/event-dispatcher
|
||||
restart: always
|
||||
volumes:
|
||||
- "/data/event-dispatcher/instance/:/app/instance/"
|
||||
environment:
|
||||
LDAP_SERVER : "{{ ldap_connection_url }}"
|
||||
LDAP_BIND_DN : "{{ ldap_bind_dn }}"
|
||||
LDAP_BIND_PW : "{{ ldap_password }}"
|
||||
LDAP_BASE_DN : "{{ ldap_user_dn }}"
|
||||
|
||||
DISPATCH_ACCESS_TOKEN: "{{ event_dispatcher_pass }}"
|
||||
SETTINGS_ACCESS_TOKEN: "{{ notification_settings_access_token }}"
|
||||
|
||||
event-dispatcher-worker:
|
||||
image: harbor-registry.atlantishq.de/atlantishq/event-dispatcher-worker
|
||||
|
||||
restart: always
|
||||
environment:
|
||||
|
||||
DISPATCH_SERVER: "{{ event_dispatcher_proto }}://{{ event_dispatcher_host }}"
|
||||
DISPATCH_ACCESS_TOKEN: "{{ event_dispatcher_pass }}"
|
||||
|
||||
NTFY_PUSH_TARGET: "{{ ntfy_push_target }}"
|
||||
NTFY_USER: "admin"
|
||||
NTFY_PASS: "{{ ntfy_api_access_token }}"
|
||||
NTFY_API_SERVER: "{{ ntfy_api_target }}"
|
||||
NTFY_API_TOKEN: "{{ ntfy_api_access_token }}"
|
||||
|
||||
LDAP_SERVER : "{{ ldap_connection_url }}"
|
||||
LDAP_BIND_DN : "{{ ldap_bind_dn }}"
|
||||
LDAP_BIND_PW : "{{ ldap_password }}"
|
||||
LDAP_BASE_DN : "{{ ldap_user_dn }}"
|
||||
|
||||
SMTP_TARGET: "{{ smtp_internal_host }}"
|
||||
SMTP_PORT: "{{ smtp_internal_host_port }}"
|
||||
SMTP_USER: "{{ smtp_service_user }}@atlantishq.de"
|
||||
SMTP_PASS: "{{ smtp_service_pass }}"
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
grafana:
|
||||
services:
|
||||
grafana:
|
||||
ports:
|
||||
- 4000:3000
|
||||
image: grafana/grafana-oss
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
version: '3'
|
||||
services:
|
||||
database:
|
||||
image: postgres:13.4-alpine
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
version: "3"
|
||||
services:
|
||||
money-balancer:
|
||||
image: ghcr.io/dorianim/money-balancer
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
version: "2.3"
|
||||
|
||||
services:
|
||||
ntfy:
|
||||
image: binwiederhier/ntfy
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
potaris:
|
||||
services:
|
||||
potaris:
|
||||
ports:
|
||||
- 5003:5000
|
||||
- 5004:5000
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
version: '3'
|
||||
services:
|
||||
image-factory:
|
||||
image: harbor-registry.atlantishq.de/atlantishq/atlantis-image-factory:latest
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
sector32:
|
||||
services:
|
||||
sector32:
|
||||
ports:
|
||||
- 5001:5000
|
||||
image: registry.atlantishq.de/athq/sector32
|
||||
image: harbor-registry.atlantishq.de/atlantishq/sector32
|
||||
restart: always
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
version: '3'
|
||||
services:
|
||||
soundlib:
|
||||
image: harbor-registry.atlantishq.de/atlantishq/atlantis-soundlib:latest
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
tmnf-replay-server:
|
||||
services:
|
||||
tmnf-replay-server:
|
||||
image: harbor-registry.atlantishq.de/atlantishq/tmnf-replay-server:latest
|
||||
restart: always
|
||||
ports:
|
||||
|
||||
Reference in New Issue
Block a user