Feature Request: Publish Official Docker Images to Docker Hub
Problem
agentmemory is great, but currently the only way to deploy it in containers is to build from source:
No pre-built image - users must clone and docker build, taking 5-10+ minutes
npm install every build - slow/unreliable in regions with poor npm registry access
Upgrade friction - every new version needs a full rebuild, no docker pull workflow
No version pinning - can’t easily roll back without modifying build args
Current Workaround
The deploy/coolify/Dockerfile works, but requires users to build themselves:
bash
docker build --build-arg AGENTMEMORY_VERSION=0.9.27 -t agentmemory \
https://github.com/rohitg00/agentmemory.git#main:deploy/coolify
Request
Publish pre-built Docker images to Docker Hub or GHCR with:
Multi-arch support: linux/amd64 and linux/arm64
Semantic version tags: 0.9.27, 0.9.x, latest
Auto-build via GitHub Actions on new releases
Benefits
Instant deploy: docker run -d -p 3111:3111 -v data:/data rohitg00/agentmemory
Easy upgrades: docker pull && docker compose up -d
CI/CD friendly: version pinning, fast pulls
Broader adoption for self-hosters
Additional Suggestion
GHCR (ghcr.io) is a great free alternative to Docker Hub for public images.
Happy to help write the GitHub Actions workflow if needed. Thanks!
Feature Request: Publish Official Docker Images to Docker Hub
Problem
agentmemory is great, but currently the only way to deploy it in containers is to build from source:
No pre-built image - users must clone and docker build, taking 5-10+ minutes
npm install every build - slow/unreliable in regions with poor npm registry access
Upgrade friction - every new version needs a full rebuild, no docker pull workflow
No version pinning - can’t easily roll back without modifying build args
Current Workaround
The deploy/coolify/Dockerfile works, but requires users to build themselves:
bash
docker build --build-arg AGENTMEMORY_VERSION=0.9.27 -t agentmemory \
https://github.com/rohitg00/agentmemory.git#main:deploy/coolify
Request
Publish pre-built Docker images to Docker Hub or GHCR with:
Multi-arch support: linux/amd64 and linux/arm64
Semantic version tags: 0.9.27, 0.9.x, latest
Auto-build via GitHub Actions on new releases
Benefits
Instant deploy: docker run -d -p 3111:3111 -v data:/data rohitg00/agentmemory
Easy upgrades: docker pull && docker compose up -d
CI/CD friendly: version pinning, fast pulls
Broader adoption for self-hosters
Additional Suggestion
GHCR (ghcr.io) is a great free alternative to Docker Hub for public images.
Happy to help write the GitHub Actions workflow if needed. Thanks!