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