listmonk notes

This commit is contained in:
2024-08-31 15:10:45 -07:00
parent 3c3536d4df
commit c9a45cbcae
+22
View File
@@ -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