Blogs

Blogs

August 22, 2018

Configuring Node js on Jenkins using docker

Jenkins is a devops tool for continuous intergration. Install jenkins Requirements for this tutorial : Docker Docker compose We will user docker compose to configure jenkins docker container: version: '3.5' services: jenkins: image: 'jenkins/jenkins:lts' container_name: 'jenkins' restart: always ports: - '8080:8080' - '50000:50000' volumes: - jenkins-data:/etc/gitlab - /var/run/docker.sock:/var/run/docker.sock volumes: jenkins-data: name: jenkins-data Then, run the command : $ docker-compose up -d Run Jenkins Once you had run the docker compose file, test that your jenkins is running by opening this url on your browser http://localhost:8080

December 20, 2017

Docker Compose Tutorial

If you are tired of configuring your docker containers every time you want to run it, docker compose is the solution. Docker compose is a tool that will read a configuration file, and will translate it to docker command easily. If you like this article, leave a comment and share it with your friends :) Requirement For this tutorial, you need a linux machine. I am using an Orangepi server because it is very performant and affordable.

September 3, 2015

Call R From Java Using JRI Library

R is a very powerful language designed for mathematics and statistics. It became one of the best data analysis tools due to its performance and its syntax simplicity. R can import datasets or generate a csv file with 1 line of code. So, It will be very important to use R with one of the most known programming languages : JAVA. Using JRI library, i will show you how to assign variables, run R scripts….

Blogs
August 24, 2015

Docker Tutorial : PhpMyAdmin and MySQL Server

If you are new to Docker or you are wondering why docker is very popular today, I recommend you to read my previous posts Introduction to Docker. Requirement For this tutorial, you need a linux machine. I am using an Orangepi server because it is very performant and affordable. Orangepi3 LTS: Buy it here Pull Containers from Docker registry Searching for containers Docker have a public registry where you could find images of dockerized application that are ready to use.

Blogs
August 23, 2015

Introduction to Docker

Docker is a new open-source project that makes deployment of applications easier. The idea of this technology is very simple : “the application runs inside a software container. This container is acting like a mini Operating System”. Basics are very similar to Virtual machine : An OS is running independently of host’s OS. Networking is working using bridges… Docker is using 2 terms : image and container: An image is a packaged application that is not running.

August 22, 2015

My First Post

Hi, This is my first post. I’m computer and communication engineering student at INSA Toulouse. I’m interested in programming in : Java , C , Go lang and Javascript… Also, I’m interested in Android development , Web apps, and Security DevOps, and Linux Administration. I would like to use this blog to share information about computer science. Android development My Future posts will be related to these subjects. My tutorials will be focused on simplifying and coding android applications efficiently.