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 |
Tags
- sql-mappler
- 도커
- none이미지
- 함수형 인터페이스
- OS
- custom annotation
- task_struct
- spring-data-jpa
- Spring
- python-socketio
- Process
- ReflectUtils
- 프로세스
- 롬복주의점
- FunctionalInterface
- functional interface
- java.util.function
- 문자열 불변성
- Thread Multiplexing
- SystemCall
- @Header
- hiberbate
- 운영체제
- django-crontab
- rainbow table
- AOP
- 문자열 리터럴
- Thread Library
- 쓰레드 라이브러리
- strict stubbing
Archives
- Today
- Total
목록docker (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