8 lines
155 B
Bash
Executable file
8 lines
155 B
Bash
Executable file
#!/bin/bash
|
|
|
|
script_root="$( dirname $0 )"
|
|
|
|
for y in "${script_root}"/*.yml;do
|
|
by="$(basename $y)"
|
|
sudo docker-compose -f "${y}" -p "${by}" up -d
|
|
done
|