TL;DR The complete code for the post is here. General Information Building a Docker image mainly means creating a Dockefile and specifying all the required components to install and configure. So a Dockerfile contains at least many operating system commands for installing and configuring software and packages. Keeping all commands […]
Docker
Readings https://github.com/talos-systems/talos Kubectl autocomplete BASH You can also use a shorthand alias for kubectl that also works with completion: ZSH Kubectl context and configuration Set which Kubernetes cluster kubectl communicates with and modifies configuration information. See Authenticating Across Clusters with kubeconfig documentation for detailed config file information. Kubectl apply apply manages applications through files defining Kubernetes resources. […]
Readings Helm – The Kubernetes Package Manager – Home – GithubHelm: package manager (analogous to yum and apt) Charts: packages (analogous to debs and rpms). Home for these Charts is the Kubernetes Charts repository. Helm – Introduction to Helm TL;DR Helm (Documentation): Using Helm Customizing the Chart Before Installing Helm: Concepts Three Big […]
Useful apps portainer.io: MAKING DOCKER MANAGEMENT EASY. Build and manage your Docker environments with ease today. Useful commands docker ps — Lists running containers. Some useful flags include: -a / -all for all containers (default shows just running) and —-quiet /-q to list just their ids (useful for when you want to get all the containers). docker pull — Most of […]
General Information Docker Cheatsheet Awesome-Docker Installation Install with Homebrew After Installation, check versions First steps Start a docker image with a given name Run a command Leave image Show running images Start image Attach to image, e.g. „enter“ the image Don’t forget to press enter after you entered the command […]