19 lines
763 B
Plaintext
Raw Normal View History

2023-11-18 14:11:48 +01:00
services:
2023-12-28 00:28:30 +01:00
{% include 'roles/docker-central-database/templates/services/' + database_type + '.yml.j2' %}
2023-12-05 14:37:50 +01:00
application:
{% include 'roles/docker-compose/templates/services/base.yml.j2' %}
2025-02-03 11:44:13 +01:00
image: listmonk/listmonk:{{applications.listmonk.version}}
ports:
- "127.0.0.1:{{http_port}}:9000"
2023-11-18 14:11:48 +01:00
volumes:
- {{docker_compose.directories.config}}config.toml:/listmonk/config.toml
2024-01-19 15:12:18 +01:00
{% include 'templates/docker/container/networks.yml.j2' %}
{% include 'templates/docker/container/depends-on-just-database.yml.j2' %}
healthcheck:
test: ['CMD-SHELL', 'wget -q --spider --proxy=off localhost:9000/health || exit 1']
2024-01-19 15:12:18 +01:00
{% include 'templates/docker/compose/volumes-just-database.yml.j2' %}
2024-01-09 12:18:41 +01:00
2024-01-19 15:12:18 +01:00
{% include 'templates/docker/compose/networks.yml.j2' %}