6 lines
66 B
Bash
6 lines
66 B
Bash
|
#!/bin/sh
|
||
|
set -e
|
||
|
|
||
|
git pull
|
||
|
docker-compose up -d --no-deps --build
|