click2cloud-page-loader

Docker Extension for Eclipse Docker Image IDE integration with Alibaba Cloud Services

04-Jan, 2018
click2cloud blogs- Docker Extension for Eclipse Docker Image IDE integration with Alibaba Cloud Services

Click2Cloud Docker Toolkit for Eclipse is an application platform that allows a user to manage Docker Images and Containers with similar functionality found in the command-line docker command.

 

click2cloud-docker-toolkit-for-eclipse

What is Docker?

Docker is software which lets you create an image (which is a lot like a template for a virtual machine) and then run instances of that image in a container.

Docker maintains a vast repository of images, called the Docker Hub which you can use as starting points or as free storage for your own images. You can install Docker, choose an image you like to use, and then run an instance of it as a container.

How to Install Docker?

You can refer the installation guide to choose your platform, docs.docker.com/engine/installation.

Use this command:

docker run -it centos 

After some processing, you’ll see a prompt like this:

root@719059da250d:/#

Try few other commands and then exit the container:

root@719059da250d:/# lsb_release -a

No LSB modules are available.

Distributor ID:  Centos

Description: Centos 6.6

Release:    7.0

Codename:  trusty

root@719059da250d:/# exit

With above commands, you will see the bash shell of an isolated container running Centos on your machine.

Here’s a diagram and a breakdown of the result of this Docker installation:

breakdown of the result of this Docker installation

  1. First, we issue a dockercommand:
    • docker: run the dockerclient
    • run: the command to run a new container
    • -it: option to give the container an interactive terminal
    • centos: the image to base the container on
  2. Then the docker service runs on the host (i.e. our machine) to check if we have a copy of the requested image locally.
  3. Then the docker service check the public registry (the docker hub) to see if there’s an image named Centos available- which there is.
  4. The docker service downloads the image and stores it in its local cache of images (ready for next time).
  5. The docker service creates a new container, based on the centos.

Accessibility constraints with Docker

Click2Cloud Docker Toolkit for Eclipse has adopted Docker Commands which are accessible through Command Line Tools and Interfaces. But, managing these tools and remembering the various commands using CLI’s need good expertise and training, which is making it difficult for developers to use it.

The best solutions

The best solutions that address these constraints is our Click2Cloud Eclipse IDE Extension for Docker.

You can publish Java Application to Linux in 5 minutes with Click2Cloud Docker Toolkit for Eclipse.

The Eclipse Docker explorer plugin can easily connect to any Docker machine running on the cloud with a pre-requisite as that machine should be created without error and once the connection creates we will be able to perform the rest of the operations.

5 Step Installation of Click2Cloud Docker Eclipse Extension and Integration with Alibaba Cloud Services

1.Download the Click2Cloud Docker Toolkit for Eclipse from http://ftp-repos.click2cloud.net/shared/click2cloud-eclipse-tool-v3.0.zip

2. Launch the extension and Sign-in to Alibaba Cloud environment

 Sign-in to Alibaba Cloud environment

New Docker Connection

3. Pull Image from the registry.

4. Run the pulled image.

search and pull docker image

docker container settings

5.View logs and build the required image