Describe the bug
docker image is unavailable
To Reproduce
Steps to reproduce the behavior:
$docker pull botpress/server
Using default tag: latest
Error response from daemon: manifest for botpress/server:latest not found: manifest unknown: manifest unknown
Expected behavior
The image should download normally
Environment (please complete the following information):
Hey @rt3norio, this is totally normal since we have not tagged any image with latest.
Instead, try using our latest version as the tag: docker pull botpress/server:v12_1_4
it works!
could you guys explain it better in the documentation?
Thanks!
Glad I found this!
could you guys explain it better in the documentation?
+1 for this please! In fact the Readme page on Docker Hub suggests the latest tag exists.
https://hub.docker.com/r/botpress/server says
Start the container with minimal necessary options:
docker run --detach \
--name=botpress \
--publish 3001:3001 \
--volume botpress_data:/botpress/data \
botpress/server:latest
Also, The docker hub page also suggest this command in the sidebar. which also fails looking for latest image as default.

docker pull botpress/server
Using default tag: latest
Error response from daemon: manifest for botpress/server:latest not found: manifest unknown: manifest unknown
got here because of the same error. maybe it's something to think about?
You can check the latest releases over here and replace dots with _ for the image tag,
vx.xx.x to vx_xx_x
Example:
docker pull botpress/server:v12_17_1
I changed the documentation on Docker Hub to reflect the expected pattern for the Docker tag (vX_X_X)
Most helpful comment
Also, The docker hub page also suggest this command in the sidebar. which also fails looking for latest image as default.

docker pull botpress/server Using default tag: latest Error response from daemon: manifest for botpress/server:latest not found: manifest unknown: manifest unknown