7 lines
287 B
Bash
Executable File
7 lines
287 B
Bash
Executable File
#!/bin/bash
|
|
echo "Starting app..."
|
|
docker compose up -d
|
|
echo "The app is available at http://localhost:5000"
|
|
echo "You can also open in windows by running hostname -I in linux and copying the ip address "
|
|
echo "Then you can open you main OS broswer and type http://[ip you copied]:5000"
|