Docker images on Github Package Registry

Ever wondered to have your source code and packages in one place? GitHub Package Registry is a package management service that makes it easy to publish public or private packages next to your source code. It is fully integrated with GitHub, so you can use the same search, browsing, and management tools to find and publish packages as you do for your repositories. You can also use the same user and team permissions to manage code and packages together.

Connect to Docker daemon over ssh using docker-compose

One of the cool feature released with Docker 18.09 is the ability to connect to a docker daemon over ssh. This post would walk you through the steps to connect to a docker daemon running on DigitalOcean. To create a remote docker host we will use a tool called docker-machineĀ : 1 docker-machine create --driver DigitalOcean --digitalocean-access-token xxxx do-node2 Here is a detailed documentation about setting up a droplet on DigitalOcean.

Globally scoped platform ARG's in Docker BuildKit

ARG a.k.a “build-time variable” can be used to pass a variable to builder with the docker build command using --build-arg <varname>=<value> flag With the new engine 18.09 Docker supports a new backend BuildKit for executing your builds. You may switch to this backend by setting the below environment variable on your CLI - 1 DOCKER_BUILDKIT=1 With this new backend Docker predefines a set of ARG variables with the information pertaining to the platform of the node performing the build (build platform) and the resulting image (target platform)

CE-EE node activate

November 8, 2018 was a great day for Docker community as we saw new stable release for community edition Docker 18.09 CE afer moving to the new release and support cadence. This will be supported for 7 months with Docker 19.03 CE being the next release in line. Along with this being an Enterprise customer we are excited to have Docker Enterprise 2.1 which adds support for Windows Server 1709, 1803 and Windows Server 2019.

Switch between Linux and Windows Container on D4W

If you are using Docker for Windows there might be a need to switch between Linux OR Windows container at times. The first way to achieve this is to right click on the whale icon from the system tray and choose either the option “Switch to Linux Containers…” OR “Switch to Windows Containers…” The other way to achieve this from the CMD/Powershell is to execute the below command: & 'C:\Program Files\Docker\Docker\DockerCli.

Switch ORCHESTRATOR on D4W

If you are using latest Docker for Windows 18.02 CE Edge or higher it comes by default Docker Orchestrator as “Kubernetes”. For me at the time of writing this post I don’t see an option to switch it to Docker Swarm from the Settings menu. If you ever need to change the Orchestrator to Swarm/Kubernetes you may set the environment variable DOCKER_ORCHESTRATOR to appropriate value as shown below 1 set DOCKER_ORCHESTRATOR=swarm