Skip to content

Instantly share code, notes, and snippets.

@moracabanas
moracabanas / .bash_aliases
Last active December 23, 2020 02:13
Run your favorite tools as ephemeral containers
# 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