mirror of
https://github.com/mailcow/mailcow-dockerized.git
synced 2026-01-23 02:14:26 +00:00
8 lines
187 B
Bash
Executable file
8 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
|