You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
构建步骤
- 运行Dockerfile文件构建镜像 docker build -t know-sub-web:1.0.0 .
启动说明
- docker run -itd --name know-sub-web -p9201:9201 -v /data/know_sub/web/:/data/know_sub/web/ know-sub-web:1.0.0 --spring.profiles.active=test
- itd : -itd : 无交互模式启动
- -p9201:9201 : 端口映射 必填
- know-sub-web:1.0.0 构建的镜像名称