Back to Apps
Listmonk

Deploy Listmonk on Your Own Server

High performance, self-hosted newsletter and mailing list manager with a modern dashboard

Productivity

Want to deploy Listmonk on your server faster? Try Senate with one-command setup, automatic HTTPS and monitoring.

Get Started

What is Listmonk?

High performance, self-hosted newsletter and mailing list manager with a modern dashboard

Self-Host Listmonk

Follow these steps to deploy on your own server.

1

Install Docker

Skip this step if Docker is already installed on your server.

curl -fsSL https://get.docker.com | sh
2

Configure

Customize the settings below. Defaults work for most cases.

General
3

Deploy

Copy the configuration and run it on your server.

services:
  listmonk:
    environment:
      LISTMONK_app__address: 0.0.0.0:9000
      LISTMONK_app__admin_password: 98fb451fccf7cb05ac0bb708db96aada
      LISTMONK_app__admin_username: listmonk
      LISTMONK_db__database: listmonk
      LISTMONK_db__host: listmonk-db
      LISTMONK_db__password: d56c8f88ce88418100acaec7b910cc10
      LISTMONK_db__ssl_mode: disable
      LISTMONK_db__user: listmonk
      TZ: Etc/UTC
    volumes:
      - listmonk-data:/listmonk
    depends_on:
      - listmonk-db
  listmonk-db:
    image: postgres:14.1
    environment:
      POSTGRES_DB: listmonk
      POSTGRES_PASSWORD: d56c8f88ce88418100acaec7b910cc10
      POSTGRES_USER: listmonk
    volumes:
      - listmonk-db-data:/var/lib/postgresql/data
volumes:
  listmonk-data: {}
  listmonk-db-data: {}

Then run:

docker compose up -d
4

Access

Once started, access your app at http://localhost:9000

Why Self-Host Listmonk?

Full Data Ownership

Your data stays on your servers. No third-party access.

No Monthly Fees

Pay only for your server. No per-seat or usage charges.

Complete Control

Customize, backup, and scale on your own terms.

Privacy & Compliance

Meet GDPR, HIPAA, or internal security requirements.

Technical Details

Want to go faster?

Try Senate! Senate handles Docker, HTTPS, updates, and monitoring for you. Deploy any of our 300+ apps with a single command.

Install on any Linux server:

sh -c "$(curl -sSL https://get.senate.sh)"