Files
my-spring/web-fast/bin/docker-run.bat
2026-03-19 10:57:24 +08:00

29 lines
540 B
Batchfile
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

@echo off
rem /**
rem * Copyright (c) 2013-Now https://jeesite.com All rights reserved.
rem * No deletion without permission, or be held responsible to law.
rem *
rem * Author: ThinkGem@163.com
rem */
echo.
echo [信息] 运行Docker镜像
echo.
%~d0
cd %~dp0
if defined JAVA_HOME17 (
set "JAVA_HOME=%JAVA_HOME17%" & set "PATH=%JAVA_HOME17%\bin;%PATH%"
)
call mvn -v
echo.
cd ..
mvn docker:stop docker:start docker:logs -Ddocker.follow
echo.
echo 启动完成后访问http://127.0.0.1:8980 用户名system 密码admin
echo.
cd bin
pause