paultanay opened a new issue, #1494: URL: https://github.com/apache/answer/issues/1494
## Description The README.md Quick Start section instructs users to run: ```bash docker run -d -p 9080:80 -v answer-data:/data --name answer apache/answer:2.0.0 However, apache/answer:2.0.0 does not exist on Docker Hub, causing immediate failure for new users trying the quick start. Steps to Reproduce Visit https://github.com/apache/answer Follow the Quick Start command in README.md (line 26) Run: docker run -d -p 9080:80 -v answer-data:/data --name answer apache/answer:2.0.0 Actual Result Unable to find image 'apache/answer:2.0.0' locally docker: Error response from daemon: manifest for apache/answer:2.0.0 not found: manifest unknown Expected Result Docker should successfully pull and run Apache Answer. Root Cause Latest stable release on Docker Hub: apache/answer:1.7.1 v2.0.0-RC2 exists as a GitHub release but is NOT published to Docker Hub RC (Release Candidate) versions are not pushed to Docker Hub Impact Severity: High for new users Breaks first command in Quick Start Poor first impression for new contributors/users Currently affects everyone following the README Proposed Fix Update README.md line 26 to use the correct Docker image tag: Change from: docker run -d -p 9080:80 -v answer-data:/data --name answer apache/answer:2.0.0 Change to: docker run -d -p 9080:80 -v answer-data:/data --name answer apache/answer:latest Alternative (explicit version): docker run -d -p 9080:80 -v answer-data:/data --name answer apache/answer:1.7.1 I recommend using :latest tag as it automatically points to the most recent stable release. Environment Docker Hub: https://hub.docker.com/r/apache/answer/tags Latest available: 1.7.1 (Dec 19, 2025) README refers to: 2.0.0 (not available) GitHub release: v2.0.0-RC2 (Jan 29, 2026) - RC only Additional Context This appears to be a documentation sync issue where the README was updated for the upcoming v2.0.0 release, but the Docker image hasn't been published yet (likely waiting for stable release, not RC). Its my first contribution to this repository, I'm happy to submit a PR to fix this if you'd like. It's a simple one-line change in the README. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
