mirror of
https://github.com/altstackHQ/altstack-data.git
synced 2026-04-17 21:53:12 +02:00
36 lines
1.2 KiB
YAML
36 lines
1.2 KiB
YAML
# ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
# 🚀 BUILT & MAINTAINED BY THE ALTSTACK
|
|
# 🌍 https://thealtstack.com
|
|
# 💡 Open-source deployment templates for modern self-hosting.
|
|
# ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
|
|
|
|
|
|
|
|
services:
|
|
listmonk:
|
|
image: listmonk/listmonk:latest
|
|
container_name: listmonk
|
|
restart: unless-stopped
|
|
command: sh -c './listmonk --install --yes --idempotent && ./listmonk'
|
|
depends_on:
|
|
- listmonk-db
|
|
ports:
|
|
- "9000:9000"
|
|
volumes:
|
|
- ./config.toml:/listmonk/config.toml
|
|
|
|
listmonk-db:
|
|
image: postgres:13-alpine
|
|
container_name: listmonk-db
|
|
restart: unless-stopped
|
|
environment:
|
|
- POSTGRES_USER=listmonk
|
|
- POSTGRES_PASSWORD=listmonk
|
|
- POSTGRES_DB=listmonk
|
|
volumes:
|
|
- listmonk_db_data:/var/lib/postgresql/data
|
|
|
|
volumes:
|
|
listmonk_db_data:
|