Installation¶
listmonk requires Postgres ⩾ v9.4.
Binary¶
- Download the latest release and extract the listmonk binary.
./listmonk --new-config
to generate config.toml. Then, edit the file../listmonk --install
to install the tables in the Postgres DB.- Run
./listmonk
and visithttp://localhost:9000
.
Docker¶
The latest image is available on DockerHub at listmonk/listmonk:latest
Use the sample docker-compose.yml to run listmonk and Postgres DB with docker-compose as follows:
Demo¶
Easy Docker install¶
mkdir listmonk-demo
sh -c "$(curl -fsSL https://raw.githubusercontent.com/knadh/listmonk/master/install-demo.sh)"
Manual Docker install¶
wget -O docker-compose.yml https://raw.githubusercontent.com/knadh/listmonk/master/docker-compose.yml
docker-compose up -d demo-db demo-app
Warning
The demo does not persist Postgres after the containers are removed. DO NOT use this demo setup in production.
Production¶
Easy Docker install¶
This setup is recommended if you want to quickly setup listmonk
in production.
mkdir listmonk
sh -c "$(curl -fsSL https://raw.githubusercontent.com/knadh/listmonk/master/install-prod.sh)"
The above shell script performs the following actions:
- Downloads
docker-compose.yml
and generates aconfig.toml
. - Runs a Postgres container and installs the database schema.
- Runs the
listmonk
container.
Note
It's recommended to examine the contents of the shell script, before running in your environment.
Manual Docker install¶
The following workflow is recommended to setup listmonk
manually using docker-compose
. You are encouraged to customise the contents of docker-compose.yml
to your needs. The overall setup looks like:
docker-compose up db
to run the Postgres DB.docker-compose run --rm app ./listmonk --install
to setup the DB (or--upgrade
to upgrade an existing DB).- Copy
config.toml.sample
to your directory and make the following changes:app.address
=>0.0.0.0:9000
(Port forwarding on Docker will work only if the app is advertising on all interfaces.)db.host
=>listmonk_db
(Container Name of the DB container)
- Run
docker-compose up app
and visithttp://localhost:9000
.
Mounting a custom config.toml¶
To mount a local config.toml
file, add the following section to docker-compose.yml
:
app:
<<: *app-defaults
depends_on:
- db
volumes:
- ./path/on/your/host/config.toml:/listmonk/config.toml
Note
Some common changes done inside config.toml
for Docker based setups:
- Change
app.address
to0.0.0.0:9000
. - Change
db.host
tolistmonk_db
.
Here's a sample config.toml
you can use:
[app]
address = "0.0.0.0:9000"
admin_username = "listmonk"
admin_password = "listmonk"
# Database.
[db]
host = "listmonk_db"
port = 5432
user = "listmonk"
password = "listmonk"
database = "listmonk"
ssl_mode = "disable"
max_open = 25
max_idle = 25
max_lifetime = "300s"
Mount the local config.toml
inside the container at listmonk/config.toml
.
Tip
- See configuring with environment variables for variables like
app.admin_password
anddb.password
- Ensure that both
app
anddb
containers are in running. If the containers are not running, restart themdocker-compose restart app db
. - Refer to this tutorial for setting up a production instance with Docker + Nginx + LetsEncrypt SSL.
Info
The example docker-compose.yml
file works with Docker Engine 18.06.0+ and docker-compose
which supports file format 3.7.
Compiling from source¶
To compile the latest unreleased version (master
branch):
- Make sure
go
,nodejs
, andyarn
are installed on your system. git clone git@github.com:knadh/listmonk.git
cd listmonk && make dist
. This will generate thelistmonk binary
.
Release candidate (RC)¶
The master
branch with bleeding edge changes is periodically built and published as listmonk/listmonk:rc
on DockerHub. To run the latest pre-release version, replace all instances of listmonk/listmonk:latest
with listmonk/listmonk:rc
in the docker-compose.yml file and follow the Docker installation steps above. While it is generally safe to run release candidate versions, they may have issues that only get resolved in a general release.