10 lines
136 B
Bash
Executable File
10 lines
136 B
Bash
Executable File
#!/bin/bash
|
|
# start-app.sh
|
|
|
|
docker-compose up -d
|
|
|
|
sleep 5
|
|
|
|
echo "Application started. Access the web service at http://localhost:8080"
|
|
|