# Privacy-first stack — env vars
# Copy to .env (no .example) before `docker compose up -d`.

# Vaultwarden
VAULTWARDEN_PORT=8222
VAULTWARDEN_DOMAIN=http://localhost:8222
# Generate with `openssl rand -base64 48`
VAULTWARDEN_ADMIN_TOKEN=replace-with-openssl-rand-base64-48
# Set to true while bootstrapping the first user, then flip back to false
VAULTWARDEN_SIGNUPS_ALLOWED=false

# Joplin Server Postgres
JOPLIN_DB_USER=joplin
JOPLIN_DB_PASSWORD=replace-with-strong-password
JOPLIN_DB_NAME=joplin

# Joplin Server — exposed on this host port
JOPLIN_PORT=22300
JOPLIN_BASE_URL=http://localhost:22300
