20 lines
156 B
Bash
Executable File
20 lines
156 B
Bash
Executable File
#!/bin/bash
|
|
|
|
##
|
|
|
|
reset
|
|
|
|
clear
|
|
|
|
##
|
|
|
|
set -e
|
|
|
|
set -x
|
|
|
|
##
|
|
|
|
docker compose -f database.yaml down --remove-orphans
|
|
|
|
docker compose -f database.yaml up -d --build
|