質問編集履歴

3

微修正

2022/01/07 14:35

投稿

Akihi-Sumi
Akihi-Sumi

スコア10

test CHANGED
File without changes
test CHANGED
@@ -86,12 +86,6 @@
86
86
 
87
87
 
88
88
 
89
- RUN jupyter serverextension enable --py jupyterlab
90
-
91
- ENV DEBIAN_FRONTEND dialog
92
-
93
-
94
-
95
89
  ```
96
90
 
97
91
  ```dockercomposeyml

2

微修正

2022/01/07 14:35

投稿

Akihi-Sumi
Akihi-Sumi

スコア10

test CHANGED
File without changes
test CHANGED
@@ -5,6 +5,8 @@
5
5
  Docker-comoseを使用し、JupyterLabにアクセスするコンテナを作成中です。
6
6
 
7
7
  token、パスワード入力をせずにアクセスしたいです。
8
+
9
+ 実行環境はMacです。
8
10
 
9
11
 
10
12
 
@@ -30,11 +32,13 @@
30
32
 
31
33
  USER root
32
34
 
33
- ENV DEBIAN_FRONTEND noninteractive
35
+ ENV DEBIAN_FRONTEND=noninteractive
34
36
 
35
37
 
36
38
 
37
39
  RUN apt-get update && apt-get install --no-install-recommends -y \
40
+
41
+ curl \
38
42
 
39
43
  && apt-get clean \
40
44
 
@@ -42,7 +46,7 @@
42
46
 
43
47
 
44
48
 
45
- RUN python -m pip install --upgrade pip \
49
+ RUN python3 -m pip install --upgrade pip \
46
50
 
47
51
  && pip install --no-cache-dir\
48
52
 
@@ -50,7 +54,11 @@
50
54
 
51
55
  scipy \
52
56
 
57
+ selenium \
58
+
53
59
  matplotlib \
60
+
61
+ japanize-matplotlib \
54
62
 
55
63
  ipython \
56
64
 
@@ -78,6 +86,12 @@
78
86
 
79
87
 
80
88
 
89
+ RUN jupyter serverextension enable --py jupyterlab
90
+
91
+ ENV DEBIAN_FRONTEND dialog
92
+
93
+
94
+
81
95
  ```
82
96
 
83
97
  ```dockercomposeyml
@@ -99,6 +113,8 @@
99
113
  environment:
100
114
 
101
115
  TZ: Asia/Tokyo
116
+
117
+ tty: true
102
118
 
103
119
  command:
104
120
 
@@ -126,11 +142,13 @@
126
142
 
127
143
  volumes:
128
144
 
129
- - "./py3/root_jupyter:/root/.jupyter"
145
+ - ./py3/root_jupyter:/root/.jupyter
130
146
 
131
- - "./workspace:/workspace"
147
+ - ./workspace:/workspace
132
148
 
133
149
  working_dir: /workspace
150
+
151
+
134
152
 
135
153
  ```
136
154
 

1

誤字

2022/01/07 13:51

投稿

Akihi-Sumi
Akihi-Sumi

スコア10

test CHANGED
File without changes
test CHANGED
@@ -14,7 +14,7 @@
14
14
 
15
15
  「docker-compose build」した後、「docker-compose up -d」で正常にコンテナを作成成功。
16
16
 
17
- ただ、localhost:8888へのアクセスは成功ししたが、token入力なしでのログインができませんでした。
17
+ ただ、localhost:8888へのアクセスは成功し、Jupyter Severへのアクセスは成功したのですが、token入力なしでのログインができませんでした。
18
18
 
19
19
  ご教授願います。よろしくお願いします。
20
20