Top "Docker-image" questions

A Docker image is an inert, immutable, file that's essentially a snapshot of a Linux container.

How to open Ubuntu GUI inside a Docker image

I have downloaded the Ubuntu image inside Docker on Windows. I can run Ubuntu by: docker run -it ubuntu I …

ubuntu docker docker-image
How can I find a Docker image with a specific tag in Docker registry on the Docker command line?

I try to locate one specific tag for a Docker image. How can I do it on the command line? …

docker docker-image docker-tag
How to view logs for a docker image?

In the docker world, one can easily see logs for docker container (that is, a running image). But during image …

docker dockerfile docker-image
What is the difference between import and load in Docker?

I understand the difference between export (for containers) and save (for images). But at the end of the day the …

docker docker-image
Failed to get D-Bus connection: Operation not permitted

I'm trying to install ambari 2.6 on a docker centos7 image but in the the ambari setup step and exactly while …

docker centos7 docker-machine ambari docker-image
Remove an image tag from Docker Hub?

I was unable to find resources to understand how Docker Hub images can be managed. I have an image tagged …

docker dockerhub docker-image docker-tag
Can not remove images even though no container is running

I had multiple stopped containers and images in my machine. I wanted to clean up and removed all containers: docker …

macos docker docker-container docker-image
Docker - What is proper way to rebuild and push updated image to docker cloud?

What I'm currently doing: Dockerfile: FROM python:3.5.1 ENV PYTHONUNBUFFERED 1 RUN mkdir /www WORKDIR /www ADD deps.txt /www/ RUN pip3 …

docker dockerfile docker-image docker-cloud
How to tag an image in a Dockerfile?

I have been digging the documentation, but I did not find an instruction to define the tag name of an …

docker tags dockerfile docker-image
Docker save/load lose original image repository/name/tag

I'm using Docker 1.12.6. I have pulled an image from the Docker registry. I have exported the images as tar files …

docker docker-image