Skip to content

Search is only available in production builds. Try building and previewing the site to test it out locally.

Docker Deployment

How to run Postgram from the pre-built image and when to switch from local build mode.

  1. Pull the image:
Terminal window
docker pull ghcr.io/ivo-toby/postgram:latest
  1. Use the latest tag for the mainline build, or sha-<short> for pinning.

  2. In docker-compose.yml, swap the mcp-server service from local build to image mode:

services:
mcp-server:
image: ghcr.io/ivo-toby/postgram:latest
# remove build: .
  1. Start the stack:
Terminal window
docker compose up -d
  • The repository default Compose file builds locally by default; image mode is useful for quick deployment and upgrades.
  • ghcr.io/ivo-toby/postgram:main maps to mainline builds, while semantic tags (vX.Y.Z) require release management.