airuchen / docker-webinar-demo

Repository for the CircleCI webinar 08/18/2020

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Background

This is the demo app that accompanied the CircleCI / Docker webinar on 08/18/2020.

Getting Started Locally

run

npm install
npm start

Feel free to run yarn commands instead if you prefer yarn, but do note that the Dockerfile is set up for npm.

Building Docker Images

Dev Image

docker build -t <name>:<tag> .

Prod image

docker build -f Dockerfile.prod -t <name>:<tag> .

Running Docker Images

docker run -p 3001:3000 -it <name>:<tag>

You can access this on localhost:3001

docker run -p 3002:80 -it <name>:<tag>

You can access this on localhost:3002

About

Repository for the CircleCI webinar 08/18/2020


Languages

Language:JavaScript 64.8%Language:HTML 17.0%Language:Dockerfile 9.4%Language:CSS 8.8%