8 lines
120 B
Bash
Executable file
8 lines
120 B
Bash
Executable file
#! /usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
docker compose down --remove-orphans \
|
|
&& docker compose build \
|
|
&& docker compose up -d
|
|
|