mirror of
https://gitee.com/lijiahangmax/orion-ops.git
synced 2026-08-28 17:46:00 +08:00
8 lines
165 B
Bash
8 lines
165 B
Bash
#!/bin/bash
|
|
docker compose down
|
|
# demo 启动
|
|
if [ "$1" == "demo" ]; then
|
|
sed -i 's/DEMO_MODE=false/DEMO_MODE=true/g' docker-compose.yml
|
|
fi
|
|
docker compose up -d
|