From c9a45cbcae4e5862c5a4577dba72213e828f37ff Mon Sep 17 00:00:00 2001 From: Nick Yeoman Date: Sat, 31 Aug 2024 15:10:45 -0700 Subject: [PATCH] listmonk notes --- listmonk/README.md | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 listmonk/README.md diff --git a/listmonk/README.md b/listmonk/README.md new file mode 100644 index 0000000..8086737 --- /dev/null +++ b/listmonk/README.md @@ -0,0 +1,22 @@ +example that I had working at one point +################################################################################ +# listmonk +# port 9000 +################################################################################ + listmonkdb: + image: postgres:16.2 + restart: always + environment: + - POSTGRES_DB=listmonk + - POSTGRES_USER=listmonk + - POSTGRES_PASSWORD=censored + volumes: + - ./data/postgres:/var/lib/postgresql/data + + listmonk: + image: listmonk/listmonk:v3.0.0 + restart: always + command: [sh, -c, "yes | ./listmonk --install --config config.toml && ./listmonk --config config.toml"] + volumes: + - ./data/listmonk:/app/data + - ./data/listmonk.config.toml:/listmonk/config.toml