mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-04-21 23:42:24 +02:00
16 lines
536 B
Django/Jinja
16 lines
536 B
Django/Jinja
services:
|
|
|
|
{% include 'roles/docker-oauth2-proxy/templates/container.yml.j2' %}
|
|
|
|
application:
|
|
container_name: {{ application_id }}
|
|
image: ghcr.io/ldapaccountmanager/lam:{{applications[application_id].version}}
|
|
ports:
|
|
- 127.0.0.1:{{ports.localhost.http[application_id]}}:80
|
|
{% include 'roles/docker-compose/templates/services/base.yml.j2' %}
|
|
{% include 'templates/docker/container/networks.yml.j2' %}
|
|
|
|
{# include 'templates/docker/compose/volumes.yml.j2' #}
|
|
|
|
{% include 'templates/docker/compose/networks.yml.j2' %}
|