Tag: docker
-
How to list all stopped and running Docker containers
I often need to do this but forget exactly how to do this. I don’t know if this has changed. I could swear it has changed. You will probably find crap all over the internet telling you to use docker ps But that only lists running containers. Same story for docker container ls So how…
-
How to install Redis with Docker for local testing
In another article I suggest installing Redis with docker but do not tell how. In this article I cover how to get a Redis Image up and running with Docker locally. First you need to install Docker for your system. After you have Docker installed, next you need to download a Redis image. Here is…
-
How to remove unused or broken docker container images.
Sometimes we make mistakes. When first learning docker we probably make many mistakes and end up with tons of unused docker images. If you are on Linux like me, you won’t have a desktop dashboard like Mac and Windows get, so things are harder. To see a list of what images you have created you…
-
Docker resources
Links, resources and videos about Docker in specific. Manage sensitive data with Docker secrets – information from the documentation about using docker secrets. Secrets are for managing things like database passwords and other passwords. Introducing docker secrets management – an article explaining what Docker secretes management is and it’s value.
-
Container technology resources and information
Containers are quickly and drastically changing the way we build and deploy apps these days. Containers make deployment easier and faster by providing the exact environment that your code needs to operate. However, with this power and ease comes complexity. First off there are various container technologies, but the most common is Docker. Articles and…