목록Server/Docker (2)
HappyWeasel
사용하지 않는 image, container 일괄 삭제
docker system prune -a 단, 일괄 삭제 범위가 컨테이너 중 작동하지 않는 컨테이너도 포함이므로 사용 시 주의가 필요하다.
Server/Docker
2021. 2. 16. 17:10
1. Docker 설치하기
1. 아래의 명령어 실행. sudo apt update sudo apt install apt-transport-https ca-certificates curl software-properties-common curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu bionic stable" sudo apt update apt-cache policy docker-ce 2. 1번 실행에 대한 결과 메세지. docker-ce: Installed: (none) Candidate: 18...
Server/Docker
2019. 4. 6. 21:47