mirror of
https://github.com/logos-storage/codex-factory.git
synced 2026-01-06 23:13:12 +00:00
6 lines
174 B
Bash
6 lines
174 B
Bash
|
|
#!/bin/bash
|
||
|
|
NETWORK="swarm-test-network"
|
||
|
|
if ! `docker network inspect $NETWORK > /dev/null` ; then
|
||
|
|
echo "Creating $NETWORK..."
|
||
|
|
docker network create swarm-test-network
|
||
|
|
fi
|