2019-07-12 09:54:33 +08:00
|
|
|
# NOTE: This docker-compose.yml is meant to be just an example guideline
|
|
|
|
# on how you can achieve the same. It is not intented to run out of the box
|
|
|
|
# and you must edit the below configurations to suit your needs.
|
|
|
|
|
|
|
|
version: "3.7"
|
|
|
|
|
2019-07-12 16:20:44 +08:00
|
|
|
x-app-defaults: &app-defaults
|
|
|
|
restart: unless-stopped
|
|
|
|
image: listmonk/listmonk:latest
|
|
|
|
ports:
|
|
|
|
- "9000:9000"
|
|
|
|
networks:
|
|
|
|
- listmonk
|
|
|
|
|
|
|
|
x-db-defaults: &db-defaults
|
2021-04-11 15:28:43 +08:00
|
|
|
image: postgres:11
|
|
|
|
ports:
|
|
|
|
- "9432:5432"
|
|
|
|
networks:
|
|
|
|
- listmonk
|
|
|
|
environment:
|
|
|
|
- POSTGRES_PASSWORD=listmonk
|
|
|
|
- POSTGRES_USER=listmonk
|
|
|
|
- POSTGRES_DB=listmonk
|
|
|
|
restart: unless-stopped
|
2019-07-12 09:54:33 +08:00
|
|
|
|
2019-07-12 16:20:44 +08:00
|
|
|
services:
|
|
|
|
db:
|
|
|
|
<<: *db-defaults
|
|
|
|
volumes:
|
|
|
|
- type: volume
|
|
|
|
source: listmonk-data
|
|
|
|
target: /var/lib/postgresql/data
|
|
|
|
|
2019-07-12 09:54:33 +08:00
|
|
|
app:
|
2019-07-12 16:20:44 +08:00
|
|
|
<<: *app-defaults
|
2019-07-12 09:54:33 +08:00
|
|
|
depends_on:
|
|
|
|
- db
|
2019-07-12 16:20:44 +08:00
|
|
|
|
|
|
|
demo-db:
|
|
|
|
<<: *db-defaults
|
|
|
|
|
|
|
|
demo-app:
|
|
|
|
<<: *app-defaults
|
2020-07-09 01:08:31 +08:00
|
|
|
command: [sh, -c, "yes | ./listmonk --install --config config-demo.toml && ./listmonk --config config-demo.toml"]
|
2021-04-11 15:28:43 +08:00
|
|
|
depends_on:
|
2019-07-12 16:20:44 +08:00
|
|
|
- demo-db
|
2019-07-12 09:54:33 +08:00
|
|
|
|
|
|
|
networks:
|
|
|
|
listmonk:
|
|
|
|
|
|
|
|
volumes:
|
|
|
|
listmonk-data:
|