ghost-listmonk-connector/docker-compose.yml
troneras 1fd7dad8e4 # This is a combination of 2 commits.
# This is the 1st commit message:

first commit

# This is the commit message #2:

fixed cache
2024-08-21 02:08:01 +02:00

36 lines
No EOL
692 B
YAML

version: '3'
services:
app:
build: .
ports:
- "8808:8808"
environment:
- PORT=8808
- LISTMONK_URL=http://listmonk:9000
- BASIC_AUTH_USERNAME=admin
- BASIC_AUTH_PASSWORD=password
depends_on:
- listmonk
listmonk:
image: listmonk/listmonk:latest
ports:
- "9000:9000"
environment:
- APP_DB_HOST=db
- APP_DB_USER=listmonk
- APP_DB_PASSWORD=listmonk
depends_on:
- db
db:
image: postgres:13
environment:
- POSTGRES_USER=listmonk
- POSTGRES_PASSWORD=listmonk
- POSTGRES_DB=listmonk
volumes:
- listmonk-data:/var/lib/postgresql/data
volumes:
listmonk-data: