Docker is an open platform for developing, shipping, and running applications. Docker enables you to separate your applications from your infrastructure so you can deliver software quickly. With Docker, you can manage your infrastructure in the same ways you manage your applications. By taking advantage of Docker’s methodologies for shipping, testing, and deploying code, you can significantly reduce the delay between writing code and running it in production.

My all-time favorite container technology. Use docker run to comfortably try out new technology without messing up your local environment, use docker-compose on your testing server for simple and accessible management of multiple containers or go all the way and upgrade to kubernetes to run your containers in a cluster environment

creating and pushing multi arch images

docker buildx build -t peterpeerdeman/lightning-logger:1.1.0-amd64 --platform linux/amd64 --push -f Dockerfile .

docker buildx build -t peterpeerdeman/lightning-logger:1.1.0-arm64 --platform linux/arm64/v8 --push -f Dockerfile .

docker manifest create peterpeerdeman/lightning-logger:1.1.0 --amend peterpeerdeman/lightning-logger:1.1.0-arm64 --amend peterpeerdeman/lightning-logger:1.1.0-amd64

docker manifest push peterpeerdeman/lightning-logger:1.1.0