Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 15 additions & 4 deletions docs/examples/control_plane/docker-compose.yaml
Original file line number Diff line number Diff line change
@@ -1,11 +1,22 @@
x-pgdog: &pgdog
image: ghcr.io/pgdogdev/pgdog-enterprise:v2026-06-15
command: ["pgdog", "--config", "/etc/pgdog/pgdog.toml", "--users", "/etc/secrets/pgdog/users.toml"]
image: ghcr.io/pgdogdev/pgdog-enterprise:v2026-06-22
command:
[
"pgdog",
"--config",
"/etc/pgdog/pgdog.toml",
"--users",
"/etc/secrets/pgdog/users.toml",
]
mem_limit: 1g
environment:
PGPASSWORD: postgres
healthcheck:
test: ["CMD-SHELL", "psql -h 127.0.0.1 -p 6432 -U postgres -d postgres -tAc 'SELECT 1' || exit 1"]
test:
[
"CMD-SHELL",
"psql -h 127.0.0.1 -p 6432 -U postgres -d postgres -tAc 'SELECT 1' || exit 1",
]
interval: 5s
timeout: 5s
retries: 5
Expand All @@ -32,7 +43,7 @@ services:
image: redis:7

control:
image: ghcr.io/pgdogdev/pgdog-enterprise/control:v2026-06-15
image: ghcr.io/pgdogdev/pgdog-enterprise/control:v2026-06-22
ports:
- "8099:8080"
environment:
Expand Down
2 changes: 1 addition & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
# Latest released tag for the Enterprise Docker images. Update this in one
# place; reference it in docs with {{ enterprise_tag }}. Can be overridden at
# build time with the ENTERPRISE_TAG environment variable.
ENTERPRISE_TAG = os.environ.get("ENTERPRISE_TAG", "v2026-06-17")
ENTERPRISE_TAG = os.environ.get("ENTERPRISE_TAG", "v2026-06-22")


def define_env(env):
Expand Down
Loading