프로그램 사용/docker
docker 이미지 이름 주기
구차니
2024. 5. 8. 12:37
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]