Skip to content

Latest commit

 

History

History
18 lines (14 loc) · 463 Bytes

RELEASE.md

File metadata and controls

18 lines (14 loc) · 463 Bytes

Making a new release

  1. Clone the repo

  2. Check out the commit for the release

  3. In the root of the local repository, run:

    export TAG=<THE_TAG_BEING_PUSHED>
    docker build -t cockroachdb/movr:latest -t cockroachdb/movr:${TAG} .
    docker push cockroachdb/movr:${TAG}
    
  4. If this version should also be set to the latest tag, run:

    docker build -t cockroachdb/movr:latest .
    docker push cockroachdb/movr:latest