로딩
요청 처리 중입니다...

docker에 ubuntu 20.04 설치 후 초기 설정 및 zsh 깔기

 docker에 ubuntu 20.04 설치 후 초기 설정 및 zsh 깔기

docker pull ubuntu:20.04 docker run -it --name ubuntu:20.04 /bin/bash (docker exec -it /bin/bash) apt-get update -y apt-get upgrade -y apt-get install zsh -y chsh -s /bin/zsh apt-get install curl -y apt-get install git -y curl -L https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh | sh apt-get install vim -y vim ~/.zshrc i ZSH_THEME="ys" :wq exit docker exec -it /bin/zsh bash로도 충분하지만 zsh쪽이 모양이 좀 더 예쁘다. 테마는 별도의 설치를 하지 않아도 사용할수 있는 ys를 사용.

#docker #linux #ubun...

# bash # docker # linux # ubuntu # zsh