Docker how to change repository name or rename image?
I’m trying to change repository name of the image: REPOSITORY TAG IMAGE ID CREATED VIRTUAL SIZE server latest d583c3ac45fd 26 minutes ago 685.5 … Read more
I’m trying to change repository name of the image: REPOSITORY TAG IMAGE ID CREATED VIRTUAL SIZE server latest d583c3ac45fd 26 minutes ago 685.5 … Read more
What is the difference between ports and expose options in docker-compose.yml? 5 s 5
I want to do something like this where I can run multiple commands in order. db: image: postgres web: build: . command: python … Read more
I’m running Docker under Vagrant under OS X 10.8.4 (Mountain Lion), and whenever I try to delete a saved image, I get an … Read more
When running Docker for a long time, there are a lot of images in system. How can I remove all unused Docker images … Read more
This question’s answers are a community effort. Edit existing answers to improve this post. It is not currently accepting new answers or interactions. … Read more
I managed to find the containers under directory /var/lib/docker/containers, but I can’t find the images. What are the directories and files under /var/lib/docker? … Read more
How do people deal with persistent storage for your Docker containers? I am currently using this approach: build the image, e.g. for PostgreSQL, … Read more
I’m new to Docker, and it’s unclear how to access an external database from a container. Is the best way to hard-code in … Read more
When using Docker, we start with a base image. We boot it up, create changes and those changes are saved in layers forming … Read more