도커 컨테이너로 사용하지 않는 이미지 전체 삭제
컨테이너로 사용하지 않는 이미지 전체 삭제docker image prune -a 중지된 컨테이너 전체 삭제docker container prune
- DevOps/Docker-Kubernetes
- · 2025. 3. 29.
Could not set unknown property 'mainClassName' for task ':bootJar' error
bootJar { mainClassName = 'com.example.demo.DemoApplication'}mainClassName -> mainClass 로 변경Spring Boot 2.4 이상에서는 mainClassName이 deprecated되었고, 대신 mainClass를 사용합니다.bootJar { mainClass = 'com.example.demo.DemoApplication'}
- Build tools/Gradle-Maven
- · 2025. 3. 17.