2023-11-18 14:11:48 +01:00
|
|
|
version: "3.7"
|
|
|
|
|
|
|
|
services:
|
2023-12-28 00:28:30 +01:00
|
|
|
|
2024-01-03 15:46:28 +01:00
|
|
|
{% include 'templates/docker-service-' + database_type + '.yml.j2' %}
|
2024-01-03 11:38:09 +01:00
|
|
|
|
2023-12-05 14:37:50 +01:00
|
|
|
application:
|
2023-12-26 03:13:16 +01:00
|
|
|
restart: unless-stopped
|
|
|
|
image: listmonk/listmonk:latest
|
|
|
|
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-02 21:39:17 +01:00
|
|
|
{% include 'templates/docker-container-networks.yml.j2' %}
|
2024-01-03 11:38:09 +01:00
|
|
|
{% include 'templates/docker-container-depends-on-just-database.yml.j2' %}
|
2023-12-31 11:14:18 +01:00
|
|
|
|
2024-01-09 12:18:41 +01:00
|
|
|
{% include 'templates/docker-compose-volumes.yml.j2' %}
|
|
|
|
|
2024-01-02 21:39:17 +01:00
|
|
|
{% include 'templates/docker-compose-networks.yml.j2' %}
|