From 92dae9e7e03b83ed7e19192ee561bbbdaa7b27df Mon Sep 17 00:00:00 2001 From: mbecker20 Date: Wed, 13 Apr 2022 05:05:32 -0700 Subject: [PATCH] remove monitor network from periphery install --- cli/src/util/helpers/deploy.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/src/util/helpers/deploy.ts b/cli/src/util/helpers/deploy.ts index fc88c4733..c42357919 100644 --- a/cli/src/util/helpers/deploy.ts +++ b/cli/src/util/helpers/deploy.ts @@ -73,7 +73,7 @@ async function deployCore({ core, mongo }: Config) { const { name, secretVolume, port, restart, sysroot } = core!; const nameConfig = `--name ${toDashedName(name)}`; const volumes = `-v ${secretVolume}:/secrets -v /var/run/docker.sock:/var/run/docker.sock -v ${sysroot}:/monitor-root`; - const network = `-p ${port}:${DEFAULT_PORT} --network ${DOCKER_NETWORK}`; + const network = `-p ${port}:${DEFAULT_PORT}`; const env = `-e MONGO_URL=${mongo?.url} -e SYSROOT=${trailingSlash(core?.sysroot!)}`; const restartArg = `--restart ${restart}`; const command = `docker run -d ${nameConfig} ${volumes} ${network} ${env} ${restartArg} ${CORE_IMAGE}`;