1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- #!/bin/sh
- # 使用说明,用来提示输入参数
- usage() {
- echo "Usage: sh 执行脚本.sh [port|base|modules|stop|rm]"
- exit 1
- }
- # 开启所需端口
- port(){
- firewall-cmd --add-port=80/tcp --permanent
- firewall-cmd --add-port=8080/tcp --permanent
- service firewalld restart
- }
- # 启动基础环境(必须)
- base(){
- docker-compose up -d ruoyi-mysql ruoyi-redis
- }
- # 启动程序模块(必须)
- modules(){
- docker-compose up -d ruoyi-nginx ruoyi-admin
- }
- # 关闭所有环境/模块
- stop(){
- docker-compose stop
- }
- # 删除所有环境/模块
- rm(){
- docker-compose rm
- }
- # 根据输入参数,选择执行对应方法,不输入则执行使用说明
- case "$1" in
- "port")
- port
- ;;
- "base")
- base
- ;;
- "modules")
- modules
- ;;
- "stop")
- stop
- ;;
- "rm")
- rm
- ;;
- *)
- usage
- ;;
- esac
|