mirror of
https://github.com/Yannick7777/codeigniter-setup-script.git
synced 2025-06-25 21:55:33 +02:00
10 lines
131 B
Bash
Executable file
10 lines
131 B
Bash
Executable file
#!/bin/bash
|
|
|
|
if [[ "$(basename $(pwd))" == "laravel" ]]; then
|
|
cd ..
|
|
./stop
|
|
cd laravel
|
|
exit
|
|
fi
|
|
|
|
docker compose down
|