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

34 lines
594 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镜像使用 H2 内嵌数据库。
echo.
pause
%~d0
cd %~dp0
cd ..
rem 停止并移除容器,如果存在
call docker-compose -f docker-compose.yml stop
call docker-compose -f docker-compose.yml rm -f
rem 运行容器
call docker-compose -f docker-compose.yml up -d
rem 查看日志
call docker-compose -f docker-compose.yml logs -f
echo .
echo 启动完成 ...
echo .
cd bin
pause