10 lines
120 B
Bash
Executable File
10 lines
120 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
cd "$(dirname "$0")"
|
|
echo "start akkoma..."
|
|
docker compose up -d
|
|
sleep 3
|
|
docker compose ps
|