Author: acsimsek

Spring Boot web application with Docker and Kubernetes

In this post, we will show you how to create a simple Spring boot web application with a REST api. We will Dockerize this application and finally deploy it with Kubernetes. To create the spring boot application go to https://start.spring.io. Then select maven as project type, java for language, spring boot version, packaging, java version. […]

How to export and import Docker containers

For whatever reason, you don’t want to use any docker registry or repository to commit your changes and push/pull images and also you want to keep the current state and data in your containers. You need to use export/import commands of docker. export your container copy your exported and compressed file to your new server […]

How to store credentials in Git

So, you don’t want to enter your username and password each time you issue a git command in your terminal. There is a way to save your credentials on your PC’s disk in plaintext. run then It will ask you for your username and password one last time and save it for your future commands. […]