본문 바로가기

IT/Server5

Docker rm all exited containers 위 이미지와 같이 exited된 Constainers들이 있다. Docker에서 exited된 모든 컨테이너를 지우고 싶을 때, $ docker rm $(docker ps -a -q -f status=exited) 를 사용한다. $docker ps -a -q -f status=exited 명령어로 상태가 exited된 모든 containers들을 불러온다. rm 명령으로 불러온 container id를 호출하여 지운다. 2018. 10. 30.
image is being used by stopped container Docker로 이미지 Build하다가 에러로 인해 멈추고, 수정후 다시 Build할 경우 기존에 남아 있던 이미지가 있다. 만약 강제로 지워주고 싶다면 $ docker rmi -f rmi 명령에 -f 옵션을 넣어준다. * docker에서는 image id를 다 안쓰고 앞에만 조금 써도 적용된다. 2018. 10. 30.
change putty color (theme) / putty 테마 색 변경 [putty theme list]https://github.com/AlexAkulov/putty-color-themes 1. windows + R 2. HKEY_CURRENT_USER\Software\SimonTatham\PuTTY\Sessions\change colour values [putty theme list]https://github.com/AlexAkulov/putty-color-themes --------------------------------- Windows Registry Editor Version 5.00 [HKEY_CURRENT_USER\Software\SimonTatham\PuTTY\Sessions\Default%20Settings] "Colour0"="196,197,181" ".. 2018. 2. 23.
command line prompt too long / 커멘드라인이 너무 길 경우 줄이는 방법 jhwskorg@ubuntu-instance:~/workscpace/test/data/controller$위와 같이 너무 prompt가 길 경우 줄일 수 있다. 1. Edit .bashrc / .bashrc 수정1-1. ls -al 로 list를 본다.1-2. vi .bashrc 2. remove @\h, change \w -> \W / @\h 제거, \w -> \W 변경한다. PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ 'else PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\$ ' Restart! 2018. 2. 23.
반응형