Skip to content

Latest commit

 

History

History
32 lines (29 loc) · 1.37 KB

Docker_Instructions.md

File metadata and controls

32 lines (29 loc) · 1.37 KB

Getting Started

  1. Fork repository and clone it locally.
  2. Change into the repo directory.
  3. Update Meta Tag, Title Tag and Google Analytics Code from Basic Info, manifest.json and Resources.

Build your image with Docker

  1. The Dockerfile and /nginix_config are already included
  2. Issue the command docker build -t ieeemysight4rehab .
  3. This will take some time
  4. After its completed verify the image is there
    docker images 
    REPOSITORY          TAG                 IMAGE ID            CREATED             SIZE
    ieeemysight4rehab            latest              dc21bfebeaee        10 minutes ago      241MB
  1. Rename the image after your GDG group
    docker tag ieeemysight4rehab ieeemysight4rehab-web:v1 
    docker images
        REPOSITORY          TAG                 IMAGE ID            CREATED             SIZE
    ieeemysight4rehab-web   v1                  dc21bfebeaee        12 minutes ago      241MB
    vue-aura                latest              dc21bfebeaee        12 minutes ago      241MB

Deploy your image with Docker

  1. Issue the command
    docker run -d -p 80:80 ieeemysight4rehab-web:v1 
  1. Visit http://localhost