generated from guanyuankai/bonus-edge-proxy
9 lines
158 B
Bash
9 lines
158 B
Bash
|
|
#!/bin/bash
|
||
|
|
# 强制移除可能冲突的容器
|
||
|
|
docker rm -f media-gateway || true
|
||
|
|
|
||
|
|
# 启动服务
|
||
|
|
docker compose up -d
|
||
|
|
|
||
|
|
# 查看日志
|
||
|
|
docker compose logs -f
|