I wrote in a previous post how I upgraded docker on my antsle, and I’m now running a few containers directly in antsleOS.
If you do this, you need to stop docker when you upgrade antsleOS, or it will fail as it tries to unmount /var/lib/docker. Just make …
I wrote in a previous post how to run docker on antsle. After playing around with it, and trying a Dockerfile which uses multi-stage builds, I discovered that the version installed was 17.03 CE.
myantsle ~ # docker version Client: Version: 17.03.1-ce API …
I recently got my hands on an antsle one pro to use for my home projects. My initial plan was to run a VM on it that would only run docker containers, but now that they released version 0.5.0 antsleOS can run docker directly.
I was pleasantly surprised to see …
If you want to run integration tests in go, and want an easy way to not have to script all the setup and teardown, you can use dockertest helper. It will let you use docker to run services needed for the integration testing, which lets you easily clean up …
If you ever had to build a go binary and include it in a docker container, you would either have to do a multi-stage build, which meant you couldn’t use a docker hub automated build, or you had to include the whole build environment in the image, which …
In a project I’m working on we have multiple application components which use sidekiq. I wanted to run just one docker container with sidekiq, and I was certain I could find information about how to run it in docker using a quick google search, but nope! …