Botpress: problem with doker image

Created on 27 Sep 2019  路  7Comments  路  Source: botpress/botpress

Describe the bug
docker image is unavailable

To Reproduce
Steps to reproduce the behavior:

  1. Go to your terminal
  2. Type:
$docker pull botpress/server

  1. See error
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):

  • OS: Linux Mint 19
bug

Most helpful comment

Also, The docker hub page also suggest this command in the sidebar. which also fails looking for latest image as default.
image

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

All 7 comments

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.
image

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)

Was this page helpful?
0 / 5 - 0 ratings

Related issues

JustusNBB picture JustusNBB  路  9Comments

jbourassa picture jbourassa  路  12Comments

JijeshP picture JijeshP  路  8Comments

maniskec picture maniskec  路  7Comments

DenisGorbachev picture DenisGorbachev  路  4Comments