質問編集履歴
3
ログの追加
title
CHANGED
File without changes
|
body
CHANGED
@@ -41,8 +41,14 @@
|
|
41
41
|
```
|
42
42
|
docker exec -it mattermost /bin/bash
|
43
43
|
```
|
44
|
+
(docker exec -it mattermost /bin/sh)でも同様です。
|
44
45
|
|
46
|
+
```
|
47
|
+
Error response from daemon: Container 4efa634da71c66dd5f594e65a3d9a1c8b58ea8e315fa07c1656444d563400c01 is restarting, wait until the container is running
|
48
|
+
```
|
49
|
+
|
45
50
|
ログは以下の通りです。
|
51
|
+
|
46
52
|
```
|
47
53
|
2019-07-25T12:47:52.505249Z 0 [Note] InnoDB: Completed initialization of buffer pool
|
48
54
|
2019-07-25T12:47:52.507607Z 0 [Note] InnoDB: If the mysqld execution user is authorized, page cleaner thread priority can be changed. See the man page of setpriority().
|
2
環境の追加
title
CHANGED
File without changes
|
body
CHANGED
@@ -5,6 +5,8 @@
|
|
5
5
|
docker上のmattermostのデータ永続化のために、
|
6
6
|
以下の手順で構築を行いました。
|
7
7
|
|
8
|
+
環境はWindows10です。
|
9
|
+
|
8
10
|
Dockerfile を作成
|
9
11
|
|
10
12
|
```
|
1
文章修正
title
CHANGED
File without changes
|
body
CHANGED
@@ -32,7 +32,6 @@
|
|
32
32
|
Mattermost のコンテナ作成
|
33
33
|
```
|
34
34
|
$ docker run --restart=always --name mattermost --volumes-from mattermost_storage -d --publish 8065:8065 mattermost/mattermost-preview
|
35
|
-
view raw
|
36
35
|
```
|
37
36
|
|
38
37
|
しかし、シェルに入れません。
|