Manage your email campaigns and transactional messages with a highly efficient, self-hosted solution. Designed for speed and minimal resource consumption, this tool operates as a single binary application that easily handles millions of subscribers. You can segment your audience using SQL expressions and track campaign performance through built-in analytics that monitor bounces, clicks, and top links.
Key features include:
services:
db:
image: postgres:13-alpine
container_name: listmonk_db
ports:
- "5432:5432"
environment:
- POSTGRES_PASSWORD=${POSTGRES_PASSWORD}
- POSTGRES_USER=${POSTGRES_USER}
- POSTGRES_DB=${POSTGRES_DB}
volumes:
- ./data/postgres:/var/lib/postgresql/data
restart: unless-stopped
healthcheck:
test: ["CMD-SHELL", "pg_isready -U ${POSTGRES_USER}"]
interval: 10s
timeout: 5s
retries: 5
app:
image: listmonk/listmonk:latest
container_name: listmonk_app
restart: unless-stopped
ports:
- "9000:9000"
depends_on:
- db
volumes:
- ./config.toml:/listmonk/config.tomlPOSTGRES_USER=listmonk
POSTGRES_PASSWORD=listmonk
POSTGRES_DB=listmonkAuto-fetched about 1 hour ago
Auto-fetched about 1 hour ago