12 lines
273 B
Bash
Executable File
12 lines
273 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
echo "Running app..."
|
|
|
|
docker compose up -d
|
|
|
|
echo ""
|
|
echo "The app is available at http://localhost:8080"
|
|
echo "Adminer (DB UI) is available at http://localhost:8081"
|
|
echo " Server: db | User: appuser | Password: apppassword | Database: appdb"
|