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] 🌻 Feature

## Test Plan

- [x] 💪 Manual
This commit is contained in:
Niraj Tolia 2022-09-23 08:36:04 -07:00 committed by GitHub
parent f39a14eda3
commit c145f711ee
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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: