mirror of
https://github.com/FAUSheppy/no-secrets-athq-ansible
synced 2025-12-06 07:51:35 +01:00
24 lines
546 B
YAML
24 lines
546 B
YAML
version: '3'
|
|
services:
|
|
flask:
|
|
restart: always
|
|
image: harbor-registry.atlantishq.de/atlantishq/atlantis-ip-gate-listener:latest
|
|
ports:
|
|
- 8001:5000
|
|
volumes:
|
|
- vpn-gate-data:/app/data/
|
|
environment:
|
|
- APP_SECRET={{ atlantis_array_action_pw }}
|
|
nginx:
|
|
restart: always
|
|
image: harbor-registry.atlantishq.de/atlantishq/atlantis-ip-gate-nginx:latest
|
|
volumes:
|
|
- vpn-gate-data:/data/
|
|
ports:
|
|
- 8000:8000
|
|
environment:
|
|
- TARGET=http://172.16.1.15:8096
|
|
|
|
volumes:
|
|
vpn-gate-data:
|