質問編集履歴
6
a
test
CHANGED
File without changes
|
test
CHANGED
@@ -51,3 +51,7 @@
|
|
51
51
|
{"errors":[{"code":"UNAUTHORIZED","message":"authentication required","detail":null}]}
|
52
52
|
|
53
53
|
```
|
54
|
+
|
55
|
+
|
56
|
+
|
57
|
+
関連があるかわかりませんが、[dockerでWindows以外のDockerホストに対してDockerイメージを構築すると、セキュリティ警告が表示される](https://teratail.com/questions/241907)も参照してくださると何かわかるかもしれません。
|
5
あ
test
CHANGED
File without changes
|
test
CHANGED
@@ -42,7 +42,7 @@
|
|
42
42
|
|
43
43
|
```
|
44
44
|
|
45
|
-
`Get https://registry-1.docker.io/v2/`とあったのでURLでアクセスしたところ以下の文字が書いてあるサイトにアクセスされました
|
45
|
+
`Get https://registry-1.docker.io/v2/`とあったのでURLでアクセスしたところ以下の文字が書いてあるサイトにアクセスされました。多分ログインしろというメッセージだと思ってます。
|
46
46
|
|
47
47
|
|
48
48
|
|
4
あ
test
CHANGED
File without changes
|
test
CHANGED
@@ -41,3 +41,13 @@
|
|
41
41
|
Get https://registry-1.docker.io/v2/: net/http: request canceled while waiting for connection (Client.Timeout exceeded while awaiting headers)
|
42
42
|
|
43
43
|
```
|
44
|
+
|
45
|
+
`Get https://registry-1.docker.io/v2/`とあったのでURLでアクセスしたところ以下の文字が書いてあるサイトにアクセスされました
|
46
|
+
|
47
|
+
|
48
|
+
|
49
|
+
```
|
50
|
+
|
51
|
+
{"errors":[{"code":"UNAUTHORIZED","message":"authentication required","detail":null}]}
|
52
|
+
|
53
|
+
```
|
3
あ
test
CHANGED
File without changes
|
test
CHANGED
@@ -32,7 +32,7 @@
|
|
32
32
|
|
33
33
|
|
34
34
|
|
35
|
-
push時のエラー
|
35
|
+
push時のエラー(loginできていません)
|
36
36
|
|
37
37
|
```
|
38
38
|
|
2
あ
test
CHANGED
File without changes
|
test
CHANGED
@@ -29,3 +29,15 @@
|
|
29
29
|
Error response from daemon: Get https://registry-1.docker.io/v2/: net/http: request canceled while waiting for connection (Client.Timeout exceeded while awaiting headers)
|
30
30
|
|
31
31
|
```
|
32
|
+
|
33
|
+
|
34
|
+
|
35
|
+
push時のエラー
|
36
|
+
|
37
|
+
```
|
38
|
+
|
39
|
+
$ docker push hoge/my-first-repo:ver2 The push refers to repository [docker.io/hoge/my-first-repo]
|
40
|
+
|
41
|
+
Get https://registry-1.docker.io/v2/: net/http: request canceled while waiting for connection (Client.Timeout exceeded while awaiting headers)
|
42
|
+
|
43
|
+
```
|
1
a
test
CHANGED
File without changes
|
test
CHANGED
@@ -1,4 +1,6 @@
|
|
1
|
+
Dockertoolboxを使用して[「Docker超入門④〜コンテナをcommitしてレジストリにアップロードする〜【初心者向け】
|
2
|
+
|
1
|
-
|
3
|
+
】」](https://datawokagaku.com/container_commit_upload/)
|
2
4
|
|
3
5
|
でimageを作成しpushするということをやっていました。
|
4
6
|
|