22 lines
147 B
Bash
Executable File
22 lines
147 B
Bash
Executable File
#!/bin/bash
|
|
|
|
##
|
|
|
|
reset;
|
|
|
|
clear;
|
|
|
|
##
|
|
|
|
set -e;
|
|
|
|
set -x;
|
|
|
|
##
|
|
|
|
docker compose down --remove-orphans
|
|
|
|
docker compose pull
|
|
|
|
docker compose up --build -d
|