You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: en_US/installation/docker.md
+29-5Lines changed: 29 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -28,16 +28,16 @@ For more startup parameters, please refer to the [Configuration Management](../a
28
28
29
29
## Docker Container Python Runtime Environment
30
30
31
-
NeuronEX provides two types of Docker installation packages:
31
+
NeuronEX provides four types of Docker installation packages:
32
32
33
33
-**neuronex:3.x.x**
34
34
35
35
The installation package of type neuronex:3.x.x integrates the Python runtime environment. If you want to use Python-related algorithm plugins, please use this type of image.
36
36
37
37
```bash
38
38
#run NeuronEX by neuronex:3.x.x
39
-
docker pull emqx/neuronex:3.3.0
40
-
docker run -d --name neuronex -p 8085:8085 --log-opt max-size=100m emqx/neuronex:3.3.0
39
+
docker pull emqx/neuronex:3.5.2
40
+
docker run -d --name neuronex -p 8085:8085 --log-opt max-size=100m emqx/neuronex:3.5.2
41
41
```
42
42
43
43
-**neuronex:3.x.x-slim**
@@ -46,6 +46,30 @@ The installation package of type neuronex:3.x.x-slim does not integrate the Pyth
46
46
47
47
```bash
48
48
#run NeuronEX by neuronex:3.x.x-slim
49
-
docker pull emqx/neuronex:3.3.0-slim
50
-
docker run -d --name neuronex -p 8085:8085 --log-opt max-size=100m emqx/neuronex:3.3.0-slim
49
+
docker pull emqx/neuronex:3.5.2-slim
50
+
docker run -d --name neuronex -p 8085:8085 --log-opt max-size=100m emqx/neuronex:3.5.2-slim
51
+
```
52
+
53
+
-**neuronex:3.x.x-ai**
54
+
55
+
The installation package of type neuronex:3.x.x-ai integrates the Python runtime environment and the Python dependencies for running large language models (LLM). If you have a need to use Python plugins for natural language generation and AI data analysis, please use this type of image.
56
+
57
+
This image supports x86_64 architecture devices.
58
+
59
+
```bash
60
+
#run NeuronEX by neuronex:3.x.x-ai
61
+
docker pull emqx/neuronex:3.5.2-ai
62
+
docker run -d --name neuronex -p 8085:8085 --log-opt max-size=100m emqx/neuronex:3.5.2-ai
63
+
```
64
+
65
+
-**neuronex:3.x.x-ai-arm64**
66
+
67
+
The installation package of type neuronex:3.x.x-ai-arm64 integrates the Python runtime environment and the Python dependencies for running large language models (LLM). If you have a need to use Python plugins for natural language generation and AI data analysis, please use this type of image.
68
+
69
+
This image supports arm64 architecture devices.
70
+
71
+
```bash
72
+
#run NeuronEX by neuronex:3.x.x-ai-arm64
73
+
docker pull emqx/neuronex:3.5.2-ai-arm64
74
+
docker run -d --name neuronex -p 8085:8085 --log-opt max-size=100m emqx/neuronex:3.5.2-ai-arm64
0 commit comments