도커 허브 계정 생성

https://hub.docker.com/

토큰 생성

Untitled

Untitled

도커 로그인

root@JYP-20200826XEG:~# docker login -u hyewone
Password:
Login Succeeded

Logging in with your password grants your terminal complete access to your account.
For better security, log in with a limited-privilege personal access token. Learn more at <https://docs.docker.com/go/access-tokens/>

레포지토리 생성

Untitled

Untitled

도커 이미지 태깅

root@JYP-20200826XEG:~# docker images
REPOSITORY         TAG       IMAGE ID       CREATED          SIZE
make-application   v1        dc48b91435bd   39 minutes ago   490MB
openjdk            latest    71260f256d19   5 weeks ago      470MB

root@JYP-20200826XEG:~# docker tag make-application:v1 hyewone/my-application:v1.0.0

root@JYP-20200826XEG:~# docker images
REPOSITORY               TAG       IMAGE ID       CREATED          SIZE
hyewone/my-application   v1.0.0    dc48b91435bd   39 minutes ago   490MB
make-application         v1        dc48b91435bd   39 minutes ago   490MB
openjdk                  latest    71260f256d19   5 weeks ago      470MB