user1323136
user1323136

Reputation: 899

Running a docker image on dokku

1) I know and have deployed many apps to dokku.

2) I know the whole git push to a subdomain process of dokku.

3) I also run images from docker by themselves and they run great.

4) I really cant seem to find an answer to this anywhere though. How can i run a DOCKER IMAGE in a DOKKU APP. As in i want that docker image to be running in a dokku app, not by itself using docker run. This is what i imagine:

dokku create:app myApp
<Now make that app run a Docker image, i DONT want to git push and build.>

Thanks!

Upvotes: 8

Views: 5706

Answers (2)

Yasien Dwieb
Yasien Dwieb

Reputation: 169

It's now supported to run docker images directly using dokku git:from-image command

Check this: Dokku from docker image

Upvotes: 6

cwperry
cwperry

Reputation: 113

According to this: Dokku Docs under DockerFile deployment, it looks like you place the DockerFile into the repo and push to dokku.

Upvotes: 11

Related Questions