質問編集履歴
3
修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -40,7 +40,7 @@
|
|
40
40
|
|
41
41
|
```
|
42
42
|
|
43
|
-
Linuxの環境はConoHaというVPS業者でUbuntu 18.04 LTSのVPSをレンタルしてDockerを1からインストール
|
43
|
+
Linuxの環境はConoHaというVPS業者でUbuntu 18.04 LTSのVPSをレンタルしてDockerを1からインストールしてテストしました
|
44
44
|
|
45
45
|
sudo apt-get update
|
46
46
|
|
2
追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -22,6 +22,74 @@
|
|
22
22
|
|
23
23
|
|
24
24
|
|
25
|
+
# 環境
|
26
|
+
|
25
|
-
### Windows
|
27
|
+
### Windows
|
26
28
|
|
27
29
|
WSL2 + Docker Desktop Community(2.3.0.3) stable
|
30
|
+
|
31
|
+
|
32
|
+
|
33
|
+
### Linux
|
34
|
+
|
35
|
+
Ubuntu 18.04 LTS
|
36
|
+
|
37
|
+
|
38
|
+
|
39
|
+
セットアップ手順
|
40
|
+
|
41
|
+
```
|
42
|
+
|
43
|
+
Linuxの環境はConoHaというVPS業者でUbuntu 18.04 LTSのVPSをレンタルしてDockerを1からインストールするところ
|
44
|
+
|
45
|
+
sudo apt-get update
|
46
|
+
|
47
|
+
sudo apt-get install \
|
48
|
+
|
49
|
+
apt-transport-https \
|
50
|
+
|
51
|
+
ca-certificates \
|
52
|
+
|
53
|
+
curl \
|
54
|
+
|
55
|
+
gnupg-agent \
|
56
|
+
|
57
|
+
software-properties-common
|
58
|
+
|
59
|
+
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
|
60
|
+
|
61
|
+
sudo apt-key fingerprint 0EBFCD88
|
62
|
+
|
63
|
+
sudo add-apt-repository \
|
64
|
+
|
65
|
+
"deb [arch=amd64] https://download.docker.com/linux/ubuntu \
|
66
|
+
|
67
|
+
$(lsb_release -cs) \
|
68
|
+
|
69
|
+
stable"
|
70
|
+
|
71
|
+
sudo apt-get update
|
72
|
+
|
73
|
+
sudo apt-get install docker-ce docker-ce-cli containerd.io
|
74
|
+
|
75
|
+
|
76
|
+
|
77
|
+
systemctl start docker
|
78
|
+
|
79
|
+
docker run -p 80:80 nginx
|
80
|
+
|
81
|
+
|
82
|
+
|
83
|
+
docker network inspect bridge | grep 172.17
|
84
|
+
|
85
|
+
|
86
|
+
|
87
|
+
curl http://127.0.0.1
|
88
|
+
|
89
|
+
(みれる)
|
90
|
+
|
91
|
+
curl http://172.17.0.2
|
92
|
+
|
93
|
+
(みれる)
|
94
|
+
|
95
|
+
```
|
1
画像追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -12,6 +12,8 @@
|
|
12
12
|
|
13
13
|
Windowsは127.0.0.1:80であればアクセス出来ます。
|
14
14
|
|
15
|
+
![](552df9e6e8bfd207be840650250054fe.png)
|
16
|
+
|
15
17
|
|
16
18
|
|
17
19
|
Q1. なぜLinuxでは172.17.0.2というIPアドレスでアクセスできて、Windowsではアクセス出来ないのでしょうか。
|