Docker로 Jupyter Lab 실행
·
Infra/Docker
[ Windows에 Docker설치 ] # Power Shell을 관리자권한으로 연 후, 명령어$ dism.exe /online /enable-feature /featurename:Microsoft-Windows-Subsystem-Linux /all /norestart$ dism.exe /online /enable-feature /featurename:VirtualMachinePlatform /all /norestart #x64 머신용 최신 WSL2 Linux 커널 업데이트 패키지 설치 https://wslstorestorage.blob.core.windows.net/wslblob/wsl_update_x64.msi #버전 설정$ wsl --set-default-version 2 #아래 URL에서 Wind..
Kubernetes - 도커를 이용한 쿠버네티스 예제
·
Infra/Kubernetes
[ 도커설치 ] sudo yum -y update sudo yum -y install docker docker version sudo yum -y install git # demo 다운로드 git clone https://github.com/cloudnativedevops/demo # 도커실행 sudo systemctl status docker sudo systemctl start docker # demo 실행 sudo docker container run -p 9999:8888 --name hello cloudnatived/demo:hello *웹 브라우저 http://localhost:9999 로 들어가 Hello, 世界 글귀를 확인 [ 도커이미지 빌드 ] sudo docker image build ..
wave35
'Infra' 카테고리의 글 목록 (4 Page)