Category Archives: Docker

Go Plugin Development on Kong

Earlier this year, Kong has announced brilliant features. You check it out the following. https://konghq.com/blog/kong-gateway-2-0-0-released/ I was very interested in one of them which is we will be able to develop Go plugins on Kong. I built a plugin to test and as soon as possible I’m writing this blog post eventually. I’m going to… Read More »

Symfony on Google Cloud Run

Nowadays, two of the biggest trends in application development have been the rise of serverless and containerization. This year, Google announced a new product called Cloud Run that is designed to bring the two together. At the same time, Google also announced Cloud Run for GKE which is specifically designed to run on Google’s version… Read More »

Falcon API Framework on Docker – 2

In this article, we will need to build an API by using the Falcon API Framework in Python. We’re going to cover some hints and methods to request. This article is part of a series: 1) Bootstrapping Falcon API Framework on Docker 2) Creating an API by using individual Falcon methods. (You’re here.) You had better… Read More »

Falcon API Framework on Docker

We’re going to adjust the Falcon API Framework on Docker. In this way, we’ll able to build our APIs. There are 2 kinds of frameworks, full-featured and bare frameworks. If you would rather develop a RESTFul API for your projects with Python, in general, you consider structure the following. 1) Flask with Flask-RESTFul 2) Django… Read More »

Using Xdebug with Docker

I am going to show using Xdebug with Docker. Because, as long as you prefer using Xdebug on development workspace with Docker, you have to create remote connection of the Xdebug. First of all, you must have a Xdebug client. I would rather use PhpStorm for this. With this way, I am going to mention… Read More »

An Introduction to the Kubernetes

In this article, my goal is to get purpose of Kubernetes, to understand philosophy. If i need to tell a little bit, The all ways lead the dependencies. Imagine that, you’ve a software project. All classes are depend on each other. At this point, Dependency Injection might be solution well. Let’s look from out of the box… Read More »

Kong Microservices Api Gateway with Docker

In recent years, all of us mention about the microservices, try to refer this way in our companies. To refer the microservices, there are plenty of topics to manage our services. They’re authentication, security, logging, cache systems, proxy services, response rate limiting, request size limiting etc. For these plugins, The Kong microservices api gateway is… Read More »

Symfony 4 Running on Docker Compose

I am developing an application to improve vocabulary. You will enter in this application the words you learned. Then, this application asks you randomly. For this, i need to establish the workspace. The workspace will become Symfony 4 on Docker Compose. It dependent Nginx, Php-Fpm and Mysql containers. Firstly, i will adjust docker-compose.yml file. Mysql is simple… Read More »