Skip to content

Latest commit

 

History

History
executable file
·
28 lines (19 loc) · 633 Bytes

File metadata and controls

executable file
·
28 lines (19 loc) · 633 Bytes

Run

yarn install yarn start

docker

Docker is a platform designed to help developers build, share, and run container applications.

We will start by build the image. docker build -t ftm-react .

Check if the image is built. docker images

To verify if the image is built successfully. docker run -p 3000:80 -d ftm-react

Check if the image is running successfully. docker ps

Tag the image. docker tag ftm-react:latest <user-name>/product-ui:latest

Check if the image is created docker images

Push the image on dockerhub repository. docker push <user-name>/product-ui:latest