工作中常用命令datas发布时间2023/08/03times1 min read# 命令工作中常用命令在 docker 中启动 nacos 镜像# --name 容器名称 -e 启动额外参数 -p 端口映射 -d 容器在后台以守护进程方式运行 docker run --name nacos -e MODE=standalone -p 8848:8848 -d nacos/nacos-server:latest 在 docker 中启动 nacos 容器docker start nacos