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 fu-hsi-web:1.0.0 .
启动说明
- docker run -itd --name fu-hsi-web -p 8097:8097 -v /data/fu-hsi/web/:/data/fu-hsi/web/ fu-hsi-web:1.0.0 --spring.profiles.active=test
- itd : -itd : 无交互模式启动
- -p 8097:8097 : 端口映射 必填
- fu-hsi-web:1.0.0 构建的镜像名称