Docker Deployment
What this page covers
Section titled “What this page covers”How to run Postgram from the pre-built image and when to switch from local build mode.
Core workflow
Section titled “Core workflow”- Pull the image:
docker pull ghcr.io/ivo-toby/postgram:latest-
Use the
latesttag for the mainline build, orsha-<short>for pinning. -
In
docker-compose.yml, swap themcp-serverservice from local build to image mode:
services: mcp-server: image: ghcr.io/ivo-toby/postgram:latest # remove build: .- Start the stack:
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:mainmaps to mainline builds, while semantic tags (vX.Y.Z) require release management.