mirror of
https://github.com/mailcow/mailcow-dockerized.git
synced 2024-11-28 08:52:00 +02:00
9 lines
187 B
Bash
Executable File
9 lines
187 B
Bash
Executable File
#!/bin/bash
|
|
. mailcow.conf
|
|
|
|
if [[ -z $(docker network ls --filter "name=${DOCKER_NETWORK}" -q) ]]; then
|
|
docker network create ${DOCKER_NETWORK} --subnet ${DOCKER_SUBNET}
|
|
else
|
|
exit 0
|
|
fi
|