Run locally
Tested and verified to launch successfully.
Terminal
$ npx launchfile up listmonk Requires Docker Desktop. No source code needed — pulls pre-built images and starts listmonk with all dependencies.
Image:
listmonk/listmonk:latest Launchfile
View on GitHub
# yaml-language-server: $schema=https://launchfile.dev/schema/v1
version: launch/v1
name: listmonk
description: "High-performance self-hosted newsletter and mailing list manager"
repository: https://github.com/knadh/listmonk
logo: https://raw.githubusercontent.com/knadh/listmonk/master/frontend/public/static/favicon.svg
image: listmonk/listmonk:latest
provides:
- protocol: http
port: 9000
exposed: true
requires:
- type: postgres
set_env:
LISTMONK_db__host: $host
LISTMONK_db__port: $port
LISTMONK_db__user: $user
LISTMONK_db__password: $password
LISTMONK_db__database: $name
env:
LISTMONK_app__address:
default: "0.0.0.0:9000"
description: "Listen address for the web server"
LISTMONK_app__admin_username:
default: "listmonk"
description: "Admin username"
LISTMONK_app__admin_password:
generator: secret
sensitive: true
description: "Admin password"
restart: always Test Results
Last Tested
2026-04-08
Health Check
Passing
Startup Time
10s
Total Disk
292 MB
Required Services
postgres
Learn More
Spec references for features used in this Launchfile.