20 lines
109 B
Bash
20 lines
109 B
Bash
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
##
|
||
|
|
|
||
|
|
reset;
|
||
|
|
|
||
|
|
clear;
|
||
|
|
|
||
|
|
##
|
||
|
|
|
||
|
|
set -e;
|
||
|
|
|
||
|
|
set -x;
|
||
|
|
|
||
|
|
##
|
||
|
|
|
||
|
|
docker-compose pull
|
||
|
|
|
||
|
|
docker-compose up --build -d
|