安装nacos

This commit is contained in:
Bunny 2024-01-03 16:28:14 +08:00
parent c50197a7fb
commit 7fb69f80d4
3 changed files with 18 additions and 2 deletions

Binary file not shown.

View File

@ -1 +0,0 @@
shutdown -s -t 66

View File

@ -535,4 +535,21 @@ docker restart es
</properties> </properties>
``` ```
![image-20240103161746183](./images/image-20240103161746183.png) ![image-20240103161746183](./images/image-20240103161746183.png)
## 安装Nacos
### 拉取镜像
```sh
docker pull nacos/nacos-server
```
### 安装
```sh
docker run --name nacos -e MODE=standalone -p 8848:8848 -p 9848:9848 -d nacos/nacos-server
docker update --restart=always 1552caf0fde8
```