2022-02-02 12:12:08 +01:00
|
|
|
services:
|
2024-01-03 11:38:09 +01:00
|
|
|
|
2024-01-19 15:12:18 +01:00
|
|
|
{% include 'templates/docker/services/' + database_type + '.yml.j2' %}
|
2024-01-03 11:38:09 +01:00
|
|
|
|
2022-02-02 12:12:08 +01:00
|
|
|
application:
|
|
|
|
logging:
|
|
|
|
driver: journald
|
|
|
|
image: yourls
|
2024-01-12 20:57:58 +01:00
|
|
|
restart: {{docker_restart_policy}}
|
2022-02-02 12:12:08 +01:00
|
|
|
ports:
|
|
|
|
- "127.0.0.1:{{http_port}}:80"
|
|
|
|
environment:
|
2024-01-03 18:01:58 +01:00
|
|
|
YOURLS_DB_HOST: "{{database_host}}"
|
2024-01-03 17:02:41 +01:00
|
|
|
YOURLS_DB_USER: "{{database_username}}"
|
|
|
|
YOURLS_DB_PASS: "{{database_password}}"
|
2024-01-06 14:32:49 +01:00
|
|
|
YOURLS_DB_NAME: "{{database_name}}"
|
2022-02-02 12:12:08 +01:00
|
|
|
YOURLS_SITE: "https://{{domain}}"
|
|
|
|
YOURLS_USER: "{{yourls_user}}"
|
|
|
|
YOURLS_PASS: "{{yourls_user_password}}"
|
2024-01-06 11:09:30 +01:00
|
|
|
healthcheck:
|
|
|
|
test: ["CMD", "curl", "-f", "http://127.0.0.1/admin/"]
|
|
|
|
interval: 1m
|
|
|
|
timeout: 10s
|
|
|
|
retries: 3
|
2024-01-03 18:01:58 +01:00
|
|
|
|
2024-01-19 15:12:18 +01:00
|
|
|
{% include 'templates/docker/container/depends-on-just-database.yml.j2' %}
|
|
|
|
{% include 'templates/docker/container/networks.yml.j2' %}
|
2023-12-31 11:14:18 +01:00
|
|
|
|
2024-01-19 15:12:18 +01:00
|
|
|
{% include 'templates/docker/compose/volumes-just-database.yml.j2' %}
|
|
|
|
{% include 'templates/docker/compose/networks.yml.j2' %}
|