19 lines
592 B
Plaintext
Raw Normal View History

2023-11-18 14:11:48 +01:00
services:
2023-12-28 00:28:30 +01:00
2024-01-19 15:12:18 +01:00
{% include 'templates/docker/services/' + database_type + '.yml.j2' %}
2023-12-05 14:37:50 +01:00
application:
restart: {{docker_restart_policy}}
2025-01-20 18:29:40 +01:00
image: listmonk/listmonk:{{listmonk_version}}
ports:
- "127.0.0.1:{{http_port}}:9000"
environment:
- TZ=Etc/UTC
2023-11-18 14:11:48 +01:00
volumes:
- ./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' %}
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' %}