mirror of
https://github.com/knadh/listmonk.git
synced 2024-11-10 17:13:04 +08:00
1ff38b5f7d
feat: Add docker image link to README
1.1 KiB
1.1 KiB
Install and run
- Run
./listmonk --new-config
to generate a sampleconfig.toml
and add your configuration (SMTP and Postgres DB credentials primarily). ./listmonk --install
to setup the DB.- Run
./listmonk
and visithttp://localhost:9000
.
Running on Docker
You can checkout the docker-compose.yml to get an idea of how to run listmonk
with PostgreSQL
together using Docker.
docker-compose up -d
to run all the services together.docker-compose run --rm app ./listmonk --install
to setup the DB.- Visit
http://localhost:9000
.
NOTE: This docker-compose
file works with Docker Engine 18.06.0+ and docker-compose
which supports file format 3.7.
Demo Setup
docker-compose.yml
includes a demo setup to quickly try out listmonk
. It spins up PostgreSQL and listmonk app containers without any persistent data.
- Run
docker-compose up -d demo-db demo-app
. - Visit
http://localhost:9000
.
NOTE: This setup will delete the data once you kill and remove the containers. This setup is NOT intended for production use.