mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2024-11-14 00:41:06 +01:00
20 lines
361 B
Django/Jinja
20 lines
361 B
Django/Jinja
version: "3.7"
|
|
|
|
services:
|
|
|
|
{% include 'templates/docker-postgres-service.yml.j2' %}
|
|
|
|
application:
|
|
restart: unless-stopped
|
|
image: listmonk/listmonk:latest
|
|
ports:
|
|
- "127.0.0.1:{{http_port}}:9000"
|
|
environment:
|
|
- TZ=Etc/UTC
|
|
depends_on:
|
|
- database
|
|
volumes:
|
|
- ./config.toml:/listmonk/config.toml
|
|
|
|
volumes:
|
|
database: |