Posts

Showing posts from January, 2019

The Top 50 Tools of 2018

Let me share a couple of interesting survey results: This looks very interesting, check it out:  https://stackshare.io/posts/top-developer-tools-2018 You may like this as well:  https://research.hackerrank.com/developer-skills/2019

Frequently Used Docker Commands

Here is the list of frequently used docker commands: (You can find the full list in the official documentation  ) List All Images docker image ls -a Remove All images docker rmi $(docker images -q) List All Containers docker ps -aq Stop All Running Containers docker stop $(docker ps -a -q) Remove  All Exited Containers docker rm $(docker ps -q -f status=exited) Remove All Running Containers docker rm -f $(docker ps -a -q) Remove All Unused Data(Unused containers, Images, Networks and Volumes) docker system prune Check Inside A Container docker ps -aq  (lists all container ids) e.g: 78ad7c6f87dd 6df1eda50edc c1328da109d7 docker exec -it     bash e.g: docker exec -it   78ad7c6f87dd    bash

Setting up Istio on Minikube for Running Bookinfo Demo Application

You can read this post here .

A Simple Helidon MicroProfile Microservice Demonstrating Many of the Commonly used JAX-RS APIs

You can read this post here .

Building a Simple Polyglot GraphQL Server

You can read this post here .

Building a Simple Java Microservice Using Helidon MicroProfile APIs and JPA

You can read this post here .