質問編集履歴

1

コンテナ内のdns設定についての情報を追記

2020/04/22 06:22

投稿

ayaten3
ayaten3

スコア5

test CHANGED
File without changes
test CHANGED
@@ -82,6 +82,98 @@
82
82
 
83
83
  ```
84
84
 
85
+ ### 試したこと(追記)
86
+
87
+ * Ubuntu18.04のコンテナ内で、dnsと```apt-get```を確認
88
+
89
+
90
+
91
+ ubuntu18.04コンテナを起動
92
+
93
+ ```terminal
94
+
95
+ docker run -it --rm ubuntu:18.04
96
+
97
+ ```
98
+
99
+ ubuntu18.04コンテナのdnsを確認
100
+
101
+ 内容は伏せますが、ホストの```/etc/resolv.conf```と同様でした
102
+
103
+ ```ubuntu18container
104
+
105
+ root:/# cat /etc/resolv.conf
106
+
107
+ # Generated by NetworkManager
108
+
109
+ search hoge.com
110
+
111
+ nameserver aaa.bbb.ccc.ddd
112
+
113
+ ```
114
+
115
+ ubuntu18.04コンテナ内で```apt-get update```を実行
116
+
117
+ 成功します
118
+
119
+ ```ubuntu18container
120
+
121
+ root:/# apt-get update
122
+
123
+ Get:1 http://security.ubuntu.com/ubuntu bionic-security InRelease
124
+
125
+ ...
126
+
127
+ Reading package lists... Done
128
+
129
+ ```
130
+
131
+
132
+
133
+ * Ubuntu16.04のコンテナ内で、dnsと```apt-get```を確認
134
+
135
+
136
+
137
+ ubuntu16.04コンテナを起動
138
+
139
+ ```terminal
140
+
141
+ docker run -it --rm ubuntu:16.04
142
+
143
+ ```
144
+
145
+ ubuntu16.04コンテナのdnsを確認
146
+
147
+ ホストの設定およびubuntu18.04コンテナの設定と同様でした
148
+
149
+ ```ubuntu16container
150
+
151
+ root:/# cat /etc/resolv.conf
152
+
153
+ # Generated by NetworkManager
154
+
155
+ search hoge.com
156
+
157
+ nameserver aaa.bbb.ccc.ddd
158
+
159
+ ```
160
+
161
+ ubuntu16.04コンテナ内で```apt-get update```を実行
162
+
163
+ 失敗します
164
+
165
+ ```ubuntu16container
166
+
167
+ root:/# apt-get update
168
+
169
+ Get:1 http://security.ubuntu.com/ubuntu xenical-security InRelease
170
+
171
+ Ign:1
172
+
173
+ ...
174
+
175
+ ```
176
+
85
177
 
86
178
 
87
179
  ### 補足情報(FW/ツールのバージョンなど)