Cloud Network

Networking | Support | Tricks | Troubleshoot | Tips

Buymecoffe

Buy Me A Coffee
Showing posts with label Docker. Show all posts
Showing posts with label Docker. Show all posts

Friday, October 29, 2021

How to Install Jenkins with Varies Method | Dockerfile | Image | Compose...

October 29, 2021
How to Install Jenkins with Varies Method | Dockerfile | Image | Compose...

Wednesday, September 2, 2020

How to Setup Monitoring for Docker Containers using Prometheus on Ubuntu 18.04

September 02, 2020
How to Setup Monitoring for Docker Containers using Prometheus on Ubuntu 18.04
 Requirment 1. docker should be installed2. docker-compose also be installedInstallation of docker1.  sudo apt-get install docker.io or sudo apt  install docker.io2. docker --version3. sudo apt-get install docker-compose Creating a Configuration files of prometheus1. create a new file prometheus.yml and copy paste belowsudo nano ~/ prometheus.yml ...

Tuesday, September 1, 2020

How to Install Prometheus using Docker on Ubuntu 18.04

September 01, 2020
How to Install Prometheus using Docker on Ubuntu 18.04
1. Create a new file sudo nano ~/prometheus.yml Add below lines or copy paste into prometheus file # A scrape configuration scraping a Node Exporter and the Prometheus server # itself. scrape_configs: # Scrape Prometheus itself every 5 seconds. - job_name: 'prometheus' scrape_interval: 5s static_configs: - targets: ['localhost:9090'] ...

Wednesday, November 6, 2019

How to Install Docker Engine - Community (EC) on CentOS 7,8

November 06, 2019
How to Install Docker Engine - Community (EC) on CentOS 7,8
How to Install Docker Engine - Community (EC) on CentOS 7,8 with Latest Version Uninstall old versions  Step1 :- sudo yum remove docker \                   docker-client \                   docker-client-latest \              ...

Wednesday, October 23, 2019

Docker Interview Question and Answer for Fresher and Experience

October 23, 2019
Docker Interview Question and Answer for Fresher and Experience
(adsbygoogle = window.adsbygoogle || []).push({});   Q :- What is Docker Ans :- Docker is a platform to run each application isolated and securely. Internally it achieves it by using kernel containerization feature.  Q :- What is the advantage of Docker over hypervisors? Ans :- Docker is light weight and more efficient in terms of resource...