9 lines
151 B
Bash
9 lines
151 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
# 拉取最新的代码
|
||
|
|
||
|
git config core.fileMode false
|
||
|
|
||
|
git pull
|
||
|
|
||
|
docker-compose --env-file .env --env-file .env.production up -d --build
|