13 lines
246 B
Bash
Executable File
13 lines
246 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
SCRIPT_DIR=$(readlink -f $(dirname "${BASH_SOURCE[0]}"))
|
|
REPO_DIR=$(dirname $SCRIPT_DIR)
|
|
|
|
$SCRIPT_DIR/clear_data.sh
|
|
$SCRIPT_DIR/create_password.sh
|
|
|
|
alias compose="compose -f $REPO_DIR/docker-compose.yml"
|
|
docker compose up -d
|