mirror of
https://github.com/mailcow/mailcow-dockerized.git
synced 2024-11-28 08:52:00 +02:00
9 lines
200 B
Bash
Executable File
9 lines
200 B
Bash
Executable File
#!/bin/bash
|
|
|
|
/bin/bash build-network.sh
|
|
for buildx in $(ls build-*.sh | grep -vE "all|network"); do
|
|
echo "Starting build file ${buildx} ..."
|
|
/bin/bash ${buildx}
|
|
done
|
|
/bin/bash fix-permissions.sh
|