This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This check ensures <drun-network> exist | |
# every <drun> container will be reachable by it service name | |
# https://stackoverflow.com/a/53052379 | |
function docker_network_check { | |
docker network inspect drun-network >/dev/null 2>&1 || \ | |
docker network create --driver bridge drun-network | |
} | |
# You can run containered resources whithout the need of intalling it bloating your system |
NewerOlder