Update the default PB_VERSION from 0.39.7 to 0.39.8 (latest release) across .env.example, both Dockerfiles, and both compose files. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
32 lines
1.7 KiB
Bash
32 lines
1.7 KiB
Bash
# Copy this file to `.env` and adjust as needed:
|
|
# cp .env.example .env
|
|
# Compose reads `.env` automatically. Keep `.env` OUT of version control.
|
|
|
|
# ── General ───────────────────────────────────────────────────────────
|
|
# PocketBase version to build (must match a published release tag, without the leading "v")
|
|
PB_VERSION=0.39.8
|
|
|
|
# Name of the running container
|
|
CONTAINER_NAME=pocketbase
|
|
|
|
# Port PocketBase listens on (used both inside the container and for the host mapping)
|
|
PB_PORT=8070
|
|
|
|
# Port for the root variant (only used with `docker compose --profile root up`)
|
|
PB_PORT_ROOT=8070
|
|
|
|
# ── Superuser bootstrap ───────────────────────────────────────────────
|
|
# On every start the entrypoint checks whether PB_ADMIN_EMAIL already exists:
|
|
# • exists → nothing happens (PB_ADMIN_PASSWORD is ignored/optional)
|
|
# • missing → the superuser is created using PB_ADMIN_PASSWORD (required in that case)
|
|
# No defaults. Leave blank to skip bootstrapping entirely.
|
|
PB_ADMIN_EMAIL=
|
|
PB_ADMIN_PASSWORD=
|
|
|
|
# ── Encryption ────────────────────────────────────────────────────────
|
|
# Encrypts the application settings stored in PocketBase's database.
|
|
# Must be EXACTLY 32 characters. Leave blank to disable.
|
|
# Generate one with: openssl rand -hex 16
|
|
# Docs: https://pocketbase.io/docs/going-to-production/#enable-settings-encryption
|
|
PB_ENCRYPTION_KEY=
|