Docker is a virtualisation system on operating system level that makes software development easier by encapsulating all required stuff inside so-called containers. Try it out, and you’ll love it! 😉
Dockerfile: runtime definition
A Dockerfile is to a project what sheet music is to a song - it ensures that the same operations are always performed, in the same order, with the same result.
...
Docker for local development
Docker has been in the developers’ world for years, but for many people it is still something remote and enigmatic. In a series of posts, I would like to introduce both theory and practice - you will find out how Docker can help you in your daily work, how to prepare an environment based on Docker and how to use this environment.
...
Composer: binary-only Docker images
Few months ago I came with an idea to build Composer’s Docker images, but containing only binary file. Yesterday my pull request was merged, and now it’s possible to use such images in your own Docker builds as the simplest way to get Composer binary in your own image! 😁
...
A Year at GetResponse
I really don’t know when it happened, but it’s been a year since I joined #GetResponse as Software Architect 😵 It was an intense and fruitful time worth summing up!
...
Docker Compose: secrets available during build
Building images introduces many challenges, one of them is safety of persisted data. How to avoid publishing sensitive data, that should remain private?
...