mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2024-11-10 06:51:04 +01:00
27 lines
786 B
Django/Jinja
27 lines
786 B
Django/Jinja
version: '3'
|
|
|
|
services:
|
|
|
|
{% include 'templates/docker-service-{{ database_type }}.yml.j2' %}
|
|
|
|
application:
|
|
logging:
|
|
driver: journald
|
|
image: yourls
|
|
restart: always
|
|
ports:
|
|
- "127.0.0.1:{{http_port}}:80"
|
|
environment:
|
|
YOURLS_DB_HOST: "database:3306"
|
|
YOURLS_DB_USER: "yourls"
|
|
YOURLS_DB_PASS: "{{yourls_database_password}}"
|
|
YOURLS_DB_NAME: "yourls"
|
|
YOURLS_SITE: "https://{{domain}}"
|
|
YOURLS_USER: "{{yourls_user}}"
|
|
YOURLS_PASS: "{{yourls_user_password}}"
|
|
{% 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' %}
|