mirror of
https://github.com/scratchfoundation/scratch-docker.git
synced 2025-07-12 20:54:10 -04:00
5 lines
184 B
Bash
Executable file
5 lines
184 B
Bash
Executable file
NETWORK_NAME=scratchapi_scratch_network
|
|
|
|
if [ -z $(docker network ls --filter name=^${NETWORK_NAME}$ --format="{{ .Name }}") ] ; then
|
|
docker network create ${NETWORK_NAME} ;
|
|
fi
|