Files
docker-compose-cookbooks/listmonk/sample.env
T
2026-05-08 13:14:01 +00:00

28 lines
541 B
Bash

# PostgreSQL
POSTGRES_IMAGE=postgres:18.3-alpine
POSTGRES_RESTART=unless-stopped
POSTGRES_USER=listmonk
POSTGRES_PASSWORD=securepassword
POSTGRES_DB=listmonk
# Storage
VOL_PATH=/data
# Listmonk
LISTMONK_IMAGE=listmonk/listmonk:latest
LISTMONK_RESTART=unless-stopped
LISTMONK_PORT=9000
LISTMONK_SSLMODE=disable
LISTMONK_MAX_OPEN=25
LISTMONK_MAX_IDLE=25
LISTMONK_MAX_LIFETIME=300s
# Timezone
TZ=America/Vancouver
# Admin user
LISTMONK_ADMIN_USER=admin
LISTMONK_ADMIN_PASSWORD=changeme1234
# Hostname
LISTMONK_HOSTNAME=listmonk.example.com