download-docker 243 B

12345678
  1. #!/bin/bash
  2. # Fetch the prebuilt docker image and check its checksum
  3. wget https://crysp.uwaterloo.ca/software/zxad/zxad-image.tar.gz
  4. sha256sum -c zxad-image.tar.gz.sha256 || exit 1
  5. # Load the downloaded image
  6. docker load < zxad-image.tar.gz