Mạnh Ksor
Mạnh Ksor

Reputation: 1

Docker can't pull image from repository

I have trouble with docker. Im trying to create a new instance of rethinkdb on docker. I used the origin command from dockerfile github.

$ docker run -d -p 8080:8080 -p 28015:28015 -p 29015:29015 dockerfile/rethinkdb

But it returned error about image not found from the repository. Any advice for this issue? Thank everyone

OS version: Windows 10

Screenshot

Upvotes: 0

Views: 202

Answers (1)

BMitch
BMitch

Reputation: 265190

That github repo doesn't appear to have been updated in a few years, and all the docker hub links are old. Consider using the official repo on docker hub:

docker run -d -p 8080:8080 -p 28015:28015 -p 29015:29015 rethinkdb

Upvotes: 1

Related Questions