LoginSignup
1
0

More than 3 years have passed since last update.

Docker push がうまくいかない時の解決法

Last updated at Posted at 2020-04-26

どういう状況だった?

docker image に user_name の指定ができていなかったため、dockerhubにpushできませんでした。

解決方法

user_nameを指定したのちpushすることで解決しました。

# USER_NAME を指定(紐付け)
% dokcer tag IMAGE_ID USER_NAME/REPOSITORY_NAME:TAG_NAME
# ホームページ指定のコマンドでpush
% docker push USER_NAME/REPOSITORY_NAME:TAG_NAME

参考

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0