From 7dd3b07db40af6be37d99736b6c9c31929644c49 Mon Sep 17 00:00:00 2001 From: Niraj Tolia Date: Tue, 18 Oct 2022 23:00:43 -0700 Subject: [PATCH] Corso docs container should be in the corso namespace (#1208) ## Description Removes an alcion reference from the docs container ## Type of change - [x] :bug: Bugfix ## Test Plan - [x] :muscle: Manual --- docs/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/Makefile b/docs/Makefile index 8cb92e3b1..d181494c0 100644 --- a/docs/Makefile +++ b/docs/Makefile @@ -7,7 +7,7 @@ CORSO_BUILD_MOD := ${CORSO_BUILD_DIR}/mod CORSO_BUILD_BIN := ${CORSO_BUILD_DIR}/bin CORSO_REPO := /go/src/github.com/alcionai/corso CORSO_LOCAL_PATH := $(shell git rev-parse --show-toplevel) -DOCSC := docker run --rm -it -p 3000:3000 -v ${PWD}:/usr/src/docs alcion/docs +DOCSC := docker run --rm -it -p 3000:3000 -v ${PWD}:/usr/src/docs corso/docs DOCSE := ${DOCSC} # for enforcing docker container as environment GOC := docker run --rm -it \ -v ${CORSO_LOCAL_PATH}:${CORSO_REPO} -v ${CORSO_BUILD_DIR}:${CORSO_BUILD_DIR} \ @@ -25,7 +25,7 @@ MDGEN_BINARY := ${CORSO_BUILD_BIN}/mdgen CLI_DOCS := ${CORSO_REPO}/docs/docs/cli buildimage: - docker build -t "alcion/docs:latest" . + docker build -t "corso/docs:latest" . dev: genclidocs $(DOCSC) npm start -- --host 0.0.0.0