mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-08-30 07:18:09 +02:00
- add pretix-oidc plugin installation (Dockerfile, version 2.3.1 default) - configure OIDC env vars (issuer, endpoints, client ID/secret, scopes, unique attribute) - enable redis + database, add config/data volumes - switch canonical domain to ticket.<PRIMARY_DOMAIN> with pretix.<PRIMARY_DOMAIN> alias - mirror GitLab-style OIDC var structure for consistency Implements pretix authentication via Keycloak/SSO. See: https://chatgpt.com/share/68b19721-341c-800f-b372-527164474018
33 lines
985 B
Django/Jinja
33 lines
985 B
Django/Jinja
services:
|
|
{% include 'roles/docker-compose/templates/base.yml.j2' %}
|
|
|
|
application:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
args:
|
|
PRETIX_BASE_IMAGE: "{{ PRETIX_IMAGE }}:{{ PRETIX_VERSION }}"
|
|
image: "{{ PRETIX_IMAGE }}:{{ PRETIX_VERSION }}-oidc"
|
|
container_name: "{{ PRETIX_CONTAINER }}"
|
|
hostname: '{{ PRETIX_HOSTNAME}}'
|
|
command: ["all"]
|
|
ports:
|
|
- "127.0.0.1:{{ ports.localhost.http[application_id] }}:80"
|
|
volumes:
|
|
- 'data:/data'
|
|
- 'config:/etc/pretix'
|
|
{% include 'roles/docker-container/templates/healthcheck/curl.yml.j2' %}
|
|
{% include 'roles/docker-container/templates/base.yml.j2' %}
|
|
depends_on:
|
|
- database
|
|
- redis
|
|
{% include 'roles/docker-container/templates/networks.yml.j2' %}
|
|
|
|
{% include 'roles/docker-compose/templates/volumes.yml.j2' %}
|
|
config:
|
|
name: {{ PRETIX_CONF_VOLUME }}
|
|
data:
|
|
name: {{ PRETIX_DATA_VOLUME }}
|
|
|
|
{% include 'roles/docker-compose/templates/networks.yml.j2' %}
|