MOTOSHARE 🚗🏍️
Turning Idle Vehicles into Shared Rides & Earnings

From Idle to Income. From Parked to Purpose.
Earn by Sharing, Ride by Renting.
Where Owners Earn, Riders Move.
Owners Earn. Riders Move. Motoshare Connects.

With Motoshare, every parked vehicle finds a purpose. Owners earn. Renters ride.
🚀 Everyone wins.

Start Your Journey with Motoshare

What is EKS and How EKS can help you?

In simple line, Amazon EKS is generally available, bringing fully-managed Kubernetes to AWS. Amazon launched Amazon EKS in November at its re:Invent 2017 conference. Till the time this article is written, Amazon EKS is available in the US East (N. Virginia) and US West (Oregon) Regions only. The cost of running EKS is $0.20 per … Read more

Lifecycle of Docker Containers

We need to carefully understand the life cycle of Docker containes. There are following images which depicts the the right phases of docker containers. Phase of Docker Containers Create -> Destroy Create -> Start -> Stopped -> Destroy Create -> Start -> Pause -> Unpause Create -> Start -> Restart Image flow of Simple Docker … Read more

Understanding the tools sets in kubernetes ecosystem

Kubernetes at Public Cloud Google Container Engine – Google Kubernetes Engine is a powerful cluster manager and orchestration system for running your Docker containers. ECS – Amazon Elastic Container Service (Amazon ECS) is a highly scalable, fast, container management service that makes it easy to run, stop, and manage Docker containers on a cluster. EKS … Read more

Simple Docker workflow – Quick start | Docker Tutorial

docker-workflow

Simple Docker workflow – Quick start In this tutorials, I am trying to cover the simple quickstart Docker workflow and for the example, I am creating Ubantu containee and using it to showcase this tutorial. Step 1 – Download the Ubantu image container from the Docker Hub # docker pull -a ubuntu Step 2 – … Read more

How to get bash or ssh into a running container in background mode?

bash-or-ssh-into-a-running-container

How to get bash or ssh into a running container in background mode? Step 1: First of all, try to find your active container by running # docker ps or # docker ps -a Step 2: If the container is not running, # docker start your_id Step 3: If we use attach we can use … Read more