Second Attemp...

Occasionally, as I come across interesting Oracle Database related issues, I’ll post my thoughts and opinions and who knows what else and perhaps, just maybe, others may find it interesting or useful as well.

Let the fun begin …


One needs to understand how Oracle works in order to use it safely.

----------------------------------------------------------------------
Jan-2017.

This is my second blogging attempt, I originally created the Oracle Blog to talk about Oracle, my learning and findings in Oracle world.

But as we move on, I started working on Big Data Analytics, DevOps and Cloud Computing. So here is second attempt of blogging on Cloud Computing (AWS, Google Cloud), Big Data technologies , concepts and DevOps tools.

Friday, July 14, 2017

Docker & Docker-compose

Docker: Docker is an open-source project that automates the deployment of applications inside software containers. Docker provides a way to run applications securely isolated in a container, packaged with all its dependencies and libraries.

App architecture is changing from monolithic code bases with waterfall development methodologies to loosely coupled services that are developed and deployed independently.



Installation of Docker on CentOs 7




Alternatively, you can use following steps 

Login as non-sudo user
$ wget -qO- https://get.docker.com/ | sh
$ sudo usermod -aG docker $(whoami)
Log out and log in from your server to activate your new groups.
Set Docker to start automatically at boot time:
$ sudo systemctl enable docker.service
Finally, start the Docker service:
$ sudo systemctl start docker.service

Installation of docker-compose


Alternatively you can use following commands


Now that you have Docker installed, let’s go ahead and install Docker Compose. First, install python-pip as prerequisite:
$ sudo yum install epel-release
$ sudo yum install -y python-pip
Then you can install Docker Compose:
$ sudo pip install docker-compose
You will also need to upgrade your Python packages on CentOS 7 to get docker-compose to run successfully:
$ sudo yum upgrade python*

Testing Docker and Docker Compose.




No comments:

Post a Comment

Amazon AWS Certified !!!

Today I passed the AWS Certified Developer - Associate exam with 92%  Wow, I have been working on AWS since last one year and mainly usin...