Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- hiberbate
- 운영체제
- strict stubbing
- Thread Multiplexing
- OS
- functional interface
- none이미지
- 롬복주의점
- 문자열 불변성
- ReflectUtils
- Process
- django-crontab
- Thread Library
- 도커
- 함수형 인터페이스
- Spring
- custom annotation
- 쓰레드 라이브러리
- AOP
- sql-mappler
- FunctionalInterface
- 문자열 리터럴
- java.util.function
- SystemCall
- spring-data-jpa
- python-socketio
- @Header
- 프로세스
- rainbow table
- task_struct
Archives
- Today
- Total
목록none이미지 (1)
JH's Develog
[Docker] none 이미지 삭제하기
도커 이미지를 빌드하다보면 위와 같은 이미지들이 쌓이곤 하는데 일일히 ID입력해서 지우기는 너무 번거롭습니다. 이미지들을 일괄적으로 한번에 삭제하는 방법을 알아보겠습니다. docker rmi $(docker images -f "dangling=true" -q) dangling 필터는 TAG가 없는(none)인 이미지만 필터링 해주므로 -f 옵션으로 dangling=true인 이미지들만 검색한 후 -q 옵션을 통해 이미지의 ID만 가져와서 rmi를 통해 삭제해주는 명령어 입니다. Error response from daemon: conflict: unable to delete (must be forced) - image is being used by stopped container 어떤 이미지들은 위와 같..
Docker
2021. 12. 29. 00:32