From c145f711eed62a9d8b11b7c6fa9033f4d78f4cb9 Mon Sep 17 00:00:00 2001 From: Niraj Tolia Date: Fri, 23 Sep 2022 08:36:04 -0700 Subject: [PATCH] Change the website preview ports to 5050/5051 (#935) ## Description Change the website preview ports to 5050/5051 This allows one to run the docs and website previews at the same time. ## Type of change - [x] :sunflower: Feature ## Test Plan - [x] :muscle: Manual --- website/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/website/Makefile b/website/Makefile index 470b0c2cf..80d21449b 100644 --- a/website/Makefile +++ b/website/Makefile @@ -4,11 +4,11 @@ buildimage: docker build -t "corso/website:latest" . dev: - docker run --rm -it --init -p 3000:3000 -p 3001:3001 \ + docker run --rm -it --init -p 5050:3000 -p 5051:3001 \ -v ${PWD}:/usr/src/website corso/website gulp shell: - docker run --rm -it -p 3000:3000 -p 3001:3001 \ + docker run --rm -it -p 5050:3000 -p 5051:3001 \ -v ${PWD}:/usr/src/website corso/website /bin/bash build: