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

33 lines
629 B
Bash
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.

#!/bin/sh
# /**
# * Copyright (c) 2013-Now https://jeesite.com All rights reserved.
# * No deletion without permission, or be held responsible to law.
# *
# * Author: ThinkGem@163.com
# *
# */
echo ""
echo "[信息] 运行Docker镜像使用 H2 内嵌数据库。"
echo ""
echo "请按回车键继续 ... "
read text
cd ..
# 停止并移除容器,如果存在
docker-compose -f docker-compose.yml stop
docker-compose -f docker-compose.yml rm -f
# 运行容器
docker-compose -f docker-compose.yml up -d
# 查看日志
docker-compose -f docker-compose.yml logs -f
echo ""
echo "启动完成 ... "
echo ""
cd bin