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.
fu-hsi-service/docker/fu-hsi-web/README.md

466 B

文件目录说明

  • /data/fu-hsi : 本项目根目录,本项目所有目录都在这个路径下面

构建步骤

  • 运行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 构建的镜像名称