mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-08-20 10:45:01 +02:00
- Standardized spacing in {{ docker_compose.directories.volumes }} across multiple roles - Added async and poll support to sys-bkp-docker-2-loc database seeding and file permission tasks - Moved Installation.md for web-app-matrix into docs/ for better structure
11 lines
543 B
Django/Jinja
11 lines
543 B
Django/Jinja
{% if applications | get_app_conf(application_id, 'features.oauth2', False) %}
|
|
oauth2-proxy:
|
|
image: quay.io/oauth2-proxy/oauth2-proxy:{{applications['web-app-oauth2-proxy'].version}}
|
|
restart: {{ DOCKER_RESTART_POLICY }}
|
|
command: --config /oauth2-proxy.cfg
|
|
hostname: oauth2-proxy
|
|
ports:
|
|
- {{ports.localhost.oauth2_proxy[application_id]}}:4180/tcp
|
|
volumes:
|
|
- "{{ docker_compose.directories.volumes }}{{applications | get_app_conf('web-app-oauth2-proxy','configuration_file')}}:/oauth2-proxy.cfg"
|
|
{% endif %} |