6 lines
128 B
Bash
Executable File
6 lines
128 B
Bash
Executable File
#!/bin/bash
|
|
echo "Starting application..."
|
|
docker compose up -d
|
|
echo "Application started. Access it at http://localhost:8080"
|
|
|