Tag: containers
-
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…
-
Interesting hosting options, information and links
amazon fargate – container hosting made easy. google cloudfront – another container hosting option
-
How many microservices per kubernetes pod?
How many microservices should I have per Kubernetes Pod? This is the question I had when I first encountered Kubernetes when trying to decide how to deploy my Microservice architecture based application. When reading through Kubernetes documentation or watching videos about kubernetes, you are told a pod holds one or more containers. So your first…
-
Kubernetes resources
Kubernetes resource list Kubernetes and Microservices go hand in hand. Basically you don’t want to do one without the other. Kubernetes is a container orchestration software. When you build a system based on the Microservice architecture you need a way to package and run those microservices on the cloud. The traditional way of preparing a…