10 lines
273 B
Bash
Executable File
10 lines
273 B
Bash
Executable File
#!/bin/bash
|
|
echo "Running app ..."
|
|
|
|
# Booting up all strictly defined services dynamically in the background
|
|
docker compose up -d
|
|
|
|
echo ""
|
|
echo "The app is available at http://localhost:3000"
|
|
echo "The database interface (phpMyAdmin) is available at http://localhost:8080"
|