Tag: Docker
-
Run Python versions in Docker: How to try the latest Python release
Posted on January 1, 2020, Level beginner Resource Length medium
Geir Arne Hjelle put together this guide about how to run different Python versions using Docker, including how you can have the latest alpha running on your computer within minutes.
Tags python docker containers learning programming
-
Simplifying Microservices on Kubernetes with Microsoft's Dapr (Distributed Application Runtime)
Posted on November 11, 2019, Level intermediate Resource Length long
Gokul Chandra put together this tutorial on hot topic of microservices. Majority of the issues that developers often run into while developing microservices for edge or cloud, revolve around event-driven needs.
Tags microservices docker kubernetes software-architecture
-
A mini-guide: Build a REST API as a Go microservice together with MySQL
Posted on November 10, 2019, Level intermediate Resource Length short
In this mini-tutorial, author creates a simple REST-API with a MySQL database. Author have recently found himself coding and deploying a lot of Go microservices and this is his experience and advice. By Johan Lejdung.
Tags golang apis mysql containers docker microservices
-
Intro guide to Dockerfile best practices
Posted on October 20, 2019, Level intermediate Resource Length medium
Tibor Vass wrote this piece about best Dockerfile practices. There are over 1 million Dockerfiles on GitHub today, but not all Dockerfiles are created equally. Efficiency is critical, and this blog series will cover five areas for Dockerfile best practices to help you write better Dockerfiles: incremental build time, image size, maintainability, security and repeatability.
Tags cicd containers docker devops software-architecture
-
Why every test automation engineer needs Jenkins
Posted on October 19, 2019, Level beginner Resource Length medium
Continuous Integration (CI) is a game-changer for increasing the adoption of test automation for every step of the software development process. In this article, the author will describe how CI affects the working day from a test automation engineer's point of view and what are the achievable benefits of CI. By Vincenzo Marrazzo.
Tags cicd containers docker devops
-
Small & fast Docker images using GraalVM's native-image
Posted on June 2, 2019, Level intermediate Resource Length medium
An article by Adam Warski focusing on optimization of deployment images. The JVM ecosystem has a lot of great traits, but small, cloud-deployment-friendly Docker images is not one of them.
Tags java scala docker programming devops
-
Starting local Kubernetes using kind and Docker
Posted on April 21, 2019, Level intermediate Resource Length short
Youichi Fujimoto wrote this guide about running Kubernetes easily in Docker. He shows the steps to run a cluster in single Docker container using kind.
Tags docker containers kubernetes
-
Understanding microservices with tracing
Posted on March 27, 2019, Level intermediate Resource Length long
An interesting article on codacy blog from rtfpessoa. A typical system now is microservices-oriented, distributed and event-driven, and following its flow of information is a complicated endeavor. Moreover, instrumenting such a system to trace the flow of information has, at least historically, been an intricate task.
Tags docker microservices devops distributed messaging
-
Litmus: Journey of storage e2e and chaos framework for Kubernetes
Posted on March 26, 2019, Level intermediate Resource Length long
Karthik Satchitanand is the author of this article documenting journey of the Litmus project. Project helps evaluate stateless workloads on Kubernetes. It was which was announced & open-sourced during the KubeCon Europe 2018.
Tags docker microservices devops containers kubernetes
-
CI/CD with Jenkins pipeline: managing infrastructure with Terraform and Docker
Posted on March 25, 2019, Level intermediate Resource Length long
An article by Alexander Savchuk in which he continues his series on CI/CD with Jenkins. This blog post attempts to document some of the lessons we learned during their two-year journey with Terraform.
Tags docker devops containers web-development
-
Fully automated zero downtime deployments with Floating IPs on DigitalOcean Droplets
Posted on March 4, 2019, Level intermediate Resource Length long
Tutorial by Marco Ebbinghaus in which he explains how he has implemented a zero downtime deployment (blue-green like) of a small web application which is running on a DigitalOcean Droplet.
Tags devops docker cicd
-
Building minimal Docker containers for Python applications
Posted on October 21, 2018, Level intermediate Resource Length short
Nick Joyce popular tutorial explaining how to keep Docker containers size to a minimum. The fewer bytes you have to shunt over the network or store on disk, the better. Keeping the size down generally means it is faster to build and deploy your container.
Tags python docker containers devops