✅ 현재 실행 중인 컨테이너를 새로운 이미지로 생성/저장/로드하는 방법
1. 실행 중인 컨테이너를 새로운 이미지로 커밋
docker load -i jenkins-with-plugins.tar
2. 이미지 저장
docker save -o jenkins-with-plugins.tar jenkins-with-plugins:2.492.2
3. 이미지 압축파일을 이미지로 로드
docker commit jenkins jenkins-with-plugins:2.492.2
https://aube1225.blogspot.com/2025/03/docker-save-load.html