8000 GitHub - akasranjan005/docker-k8s at added-blog
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

akasranjan005/docker-k8s

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

86 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

HitCount

Docker & K8s

1 Docker Installation
2 Docker-Compose Installation
3 Installing Kubernetes
3.1 Ubuntu
3.2 CentOs

1. Docker Installation - Documentation

1.1 Ubuntu

curl -fsSL https://get.docker.com -o get-docker.sh
sh get-docker.sh
  • get-docker.sh file is retrieved from docker repository. It helps in installing docker-ce on a non-production enviroment.

1.2 CentOs

sudo yum install -y yum-utils device-mapper-persistent-data lvm2
sudo yum-config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo
sudo yum install docker-ce

2. Docker-Compose Installation - Documentation

sudo curl -L https://github.com/docker/compose/releases/download/1.23.1/docker-compose-$(uname -s)-$(uname -m) -o /usr/local/bin/docker-compose
sudo chmod +x /usr/local/bin/docker-compose
docker-compose --version

Blog

You can ready my blog on docker here

3. Installing Kubernetes - Documentation

3.1 Ubuntu

curl -s https://packages.cloud.google.com/apt/doc/apt-key.gpg | apt-key add -

create a file /etc/apt/sources.list.d/kubernetes.list

deb http://apt.kubernetes.io/ kubernetes-xenial main

Update the packages

sudo apt update

Install Kubernetes

sudo apt install -y kubelet kubeadm kubectl
  • Additional Configs
ToDO

3.2 CentOs

ToDo

* Install Kubernetes Dashboard

ToDo


* ToDo:
  * Add Sample Dockerfile and docker-compose file and explanation
  * Add kubernetes sample file and explanation 

About

A comprehensive guide to get started with Docker and Kubernetes

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 3

  •  
  •  
  •  
0