docker image tag 라는 명령으로 docker image ls 로 출력되는, 저장소와 태그를 지정해 줄 수 있다.
# docker image ls REPOSITORY TAG IMAGE ID CREATED SIZE <none> <none> 2dda03d51aa0 8 seconds ago 1.47GB python latest d3fe50f3ed7f 4 weeks ago 1.02GB # docker image tag 2dda03d51aa0 test_py:custom # docker image ls REPOSITORY TAG IMAGE ID CREATED SIZE test_py custom 2dda03d51aa0 About a minute ago 1.47GB python latest d3fe50f3ed7f 4 weeks ago 1.02GB |
$ docker image tag REPOSITORY:TAG |
[링크 : https://miiingo.tistory.com/332]
[링크 : https://velog.io/@pinion7/도커-이미지-생성해보기-feat.-Dockerfile]
'프로그램 사용 > docker' 카테고리의 다른 글
docker start / stop (0) | 2024.05.08 |
---|---|
docker attach / detach (0) | 2024.05.08 |
docker 이미지 만들기 (0) | 2024.05.08 |
도커 cpu 갯수 제한 (0) | 2024.03.22 |
docker snap 버전 문제 (0) | 2022.10.12 |