質問編集履歴

3

文法改善

2020/03/02 00:43

投稿

MasatoYamada
MasatoYamada

スコア4

test CHANGED
File without changes
test CHANGED
@@ -58,7 +58,7 @@
58
58
 
59
59
  ```
60
60
 
61
- Dockerコンテナのセットアップ
61
+ Dockerコンテナのビルド
62
62
 
63
63
  ```Powershell
64
64
 
@@ -66,7 +66,7 @@
66
66
 
67
67
  ```
68
68
 
69
- Dockerコンテナのビルド
69
+ Dockerコンテナの立ち上げ
70
70
 
71
71
  ```Poweshell
72
72
 

2

Dockerセットアップを追記

2020/03/02 00:43

投稿

MasatoYamada
MasatoYamada

スコア4

test CHANGED
File without changes
test CHANGED
@@ -58,7 +58,13 @@
58
58
 
59
59
  ```
60
60
 
61
+ Dockerコンテナのセットアップ
61
62
 
63
+ ```Powershell
64
+
65
+ docker build -t nodeiis .
66
+
67
+ ```
62
68
 
63
69
  Dockerコンテナのビルド
64
70
 

1

オリジナル部分と公式ドキュメントで情報が混在していたため

2020/02/28 08:47

投稿

MasatoYamada
MasatoYamada

スコア4

test CHANGED
File without changes
test CHANGED
@@ -32,8 +32,6 @@
32
32
 
33
33
  ### 該当のソースコード
34
34
 
35
- [公式ドキュメント](https://chocolatey.org/install)より引用
36
-
37
35
  ```Dockerfile
38
36
 
39
37
  # WindowsServerイメージ
@@ -54,7 +52,7 @@
54
52
 
55
53
 
56
54
 
57
- # Chocolatey インストール
55
+ # Chocolatey インストール 公式ドキュメント(https://chocolatey.org/install)より引用
58
56
 
59
57
  RUN powershell Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))
60
58