6 lines
118 B
Bash
6 lines
118 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
# 拉取最新的代码
|
||
|
git pull
|
||
|
|
||
|
docker compose --env-file .env --env-file .env.production up -d --build
|