Skip to content

Latest commit

 

History

History

tools

arcs / tools

Manual Deployment of CI Docker image

  1. Make sure you are a part of the arcsproject Docker hub organization.

  2. Log into your docker account on your host machine.

    docker login [--password <pass>][--username <user>]
    
  3. Build the docker image from the project root:

    docker build -f tools/Dockerfile.CI -t <tag-name-of-image> .
    
  4. Get the ID of the image you just built.

    docker images 
    
  5. Tag the image-to-upload to associate it with the target repository

    docker tag <image-from-last-step> arcsproject/travis-build:latest
    
  6. Push the image

    docker push arcsproject/travis-build:latest