7 lines
287 B
Bash
7 lines
287 B
Bash
|
#!/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"
|