mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2024-11-01 02:33:10 +01:00
31 lines
951 B
Django/Jinja
31 lines
951 B
Django/Jinja
services:
|
|
|
|
{% include 'templates/docker/services/' + database_type + '.yml.j2' %}
|
|
|
|
application:
|
|
logging:
|
|
driver: journald
|
|
image: yourls
|
|
restart: {{docker_restart_policy}}
|
|
ports:
|
|
- "127.0.0.1:{{http_port}}:80"
|
|
environment:
|
|
YOURLS_DB_HOST: "{{database_host}}"
|
|
YOURLS_DB_USER: "{{database_username}}"
|
|
YOURLS_DB_PASS: "{{database_password}}"
|
|
YOURLS_DB_NAME: "{{database_name}}"
|
|
YOURLS_SITE: "https://{{domain}}"
|
|
YOURLS_USER: "{{yourls_user}}"
|
|
YOURLS_PASS: "{{yourls_user_password}}"
|
|
healthcheck:
|
|
test: ["CMD", "curl", "-f", "http://127.0.0.1/admin/"]
|
|
interval: 1m
|
|
timeout: 10s
|
|
retries: 3
|
|
|
|
{% include 'templates/docker/container/depends-on-just-database.yml.j2' %}
|
|
{% include 'templates/docker/container/networks.yml.j2' %}
|
|
|
|
{% include 'templates/docker/compose/volumes-just-database.yml.j2' %}
|
|
{% include 'templates/docker/compose/networks.yml.j2' %}
|