Hi there!
I’ve got a problem with building and running images.
Let’s start from the beginning.
Here is a docker librenms: https://github.com/setiseta/docker-librenms
Whole directory i’ve copied to my own repository and changed some settings in some files and also added my own files. And now, i’m trying to execute my own image. So i run those commands:
git clone http://url_to_my_git
docker build -t myimage:v1 cloned_repo_dir/
After that i get two images: phusion/baseimage:0.9.18 (that we can find in Dockerfile of original repo) and myimage:v1.
After that i can execute docker run
with additional commands (like on original docker-librenms site).
My question is: how to have only one image (myimage:v1) without dockerhub?
I use docker build
and docker run
. But on the site is just docker run
command and name of the image at dockerhub.