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...
Cloud Network
October 29, 2021
...
Tags:
Docker

Wednesday, September 2, 2020
How to Setup Monitoring for Docker Containers using Prometheus on Ubuntu 18.04
Cloud Network
September 02, 2020
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 ...
Tags:
Docker,
Kubuntu,
Linux Mint,
Ubuntu

Tuesday, September 1, 2020
How to Install Prometheus using Docker on Ubuntu 18.04
Cloud Network
September 01, 2020
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']
...
Tags:
Docker

Wednesday, November 6, 2019
How to Install Docker Engine - Community (EC) on CentOS 7,8
Cloud Network
November 06, 2019
Tags:
Docker

Wednesday, October 23, 2019
Docker Interview Question and Answer for Fresher and Experience
Cloud Network
October 23, 2019
(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...
