Current docker image seems to have an issue

Hey Community,

it seems, that something went wrong with the Docker Image, provided via Github. (Could that depend on the updated version yesterday?)
I did configured the Docker Terminal commands and get the following message

docker run --net=xwiki-nw --name mysql-xwiki -v /Library/DockerImages/mysql:/var/lib/mysql -e MYSQL_ROOT_PASSWORD=XXXXX -e MYSQL_USER=xwiki -e MYSQL_PASSWORD=XXXXX -e MYSQL_DATABASE=xwiki -d mysql:5.7 --character-set-server=utf8 --collation-server=utf8_bin --explicit-defaults-for-timestamp=1

Unable to find image ‘mysql:5.7’ locally

docker: Error response from daemon: Get https://registry-1.docker.io/v2/library/mysql/manifests/5.7: unauthorized: incorrect username or password.

See ‘docker run --help’.

When I copy paste the URL into the Browser, I do get the following message
{“errors”:[{“code”:“UNAUTHORIZED”,“message”:“authentication required”,“detail”:[{“Type”:“repository”,“Class”:“”,“Name”:“library/mysql”,“Action”:“pull”}]}]}

Any Idea, what went wrong?

Thanks a lot for the help

Holger

This is actually not related to XWik but to docker. You should try to google when you have some docker problems because you’ll find tons of information for running Docker (install, config, auto start, etc).

I’m sure you can understand that we cannot copy the docker docs into the xwiki docs :slight_smile:

We do link to the Docker install though and this doc will tell you that you need to login against the dockerhub registry as otherwise you local docker instance won’t be able to download the required image. See Install Docker Desktop on Mac | Docker Docs (check the part about logging in to dockerhub).

Hope it helps

1 Like

Thanks a lot, does makes sense to me… will check

regards
Holger

Apologizes! As you already mentioned, this was an authentication problem within Docker.
Problem solved with the correct login information… (shame)

/Holger