Skip to content

Containerised

Brian Chew edited this page May 30, 2023 · 2 revisions

This page will contain the any and all documentation for deploying our application anywhere via Docker.

Test it out on local

docker build -t localboost . > builds the docker image from Dockerfile specified.

docker run -p 3000:80 -d localboost > runs the docker container and map it from container to host port 80 --> 3000

http://localhost:3000 should now bring you to our deployed site on your local machine.

Deploying onto local docker via Waypoint URL https://developer.hashicorp.com/waypoint/tutorials/get-started-docker/get-started-docker

Deploying into AWS ECS via Waypoint WIP

Clone this wiki locally