restful api : https://gmlwjd9405.github.io/2018/09/21/rest-and-restful.html

 

[Network] REST란? REST API란? RESTful이란? - Heee's Development Blog

Step by step goes a long way.

gmlwjd9405.github.io

kubenetes jupyter 연동

https://cwienczek.com/2018/05/jupyter-on-kubernetes-the-easy-way/

 

Jupyter on Kubernetes - the easy way

Introduction I have been playing a bit more with Python recently. I wanted to test out some algorithms using this awesome tool called Project Jupyter. I also did not want to drain battery of my laptop while doing this, as I have a powerful machine at home

cwienczek.com

 

'IT > Kubernetes' 카테고리의 다른 글

helm 설치  (0) 2020.08.11
kubernetes에 jupyter notebook 띄우기 (2)  (0) 2020.08.07
kubernetes multiple cluster일때 cluster 옮기는 방법  (0) 2020.08.03
k8s 정리  (0) 2020.07.31
kubernetes에 jupyter notebook 띄우기 (1)  (0) 2020.07.15

도커는 컨테이너 기반의 오픈소스 가상화 플랫폼이다.

 

도커에서 가장 중요한 개념은 컨테이너와 함께 이미지라는 개념입니다.

 

이미지는 컨테이너 실행에 필요한 파일과 설정값등을 포함하고 있는 것으로 상태값을 가지지 않고 변하지 않습니다(Immutable).

 

도커는 기본적으로 root계정으로 실행해야 한다.

만약 docker version을 쳤을때

client는 나오지만, server에서 permission denied가 되었을때는,

 

$ sudo usermod -a -G docker $USER
$ sudo service docker restart

다음 명령어를 입력한 뒤,

로그아웃 후 로그인 해주면 된다.

 

 

 

+ Recent posts