Skip to content

BisQue v1.0.0

Compare
Choose a tag to compare
@amilworks amilworks released this 24 Mar 19:31
· 112 commits to master since this release

BisQue2

We have moved to v1.0.0! This new release brings a new module backend that is powered by the powerful Argo Workflow Engine and a new storage backend that creates an iRODS user and a Minio S3 bucket for that user. We have also cleaned up our Dockerfile to make it easier to build and develop for BisQue.

Features

  • Argo Workflows for running modules in BisQue
  • iRODS as main storage backend
  • Automatic iRODS user creation
  • Minio S3 bucket for each user to facilitate hyperscale deep learning training
  • Enabled OpenID
  • Easier builds for BisQue developers with new Multi-stage Dockerfile

Run BisQue using Docker

Download

Ensure you have the latest release by first running the following pull command:

  docker pull amilworks/bisque-module-dev:git

Intro: BisQue Docker Container

Run the BisQue Docker Container

To run the docker version of BisQue locally, start a bisque server on the host port 8080:

docker run --name bisque --rm -p 8080:8080 amilworks/bisque-module-dev:git

and point your browser at http://localhost:8080. You should see a BisQue homepage similar to the one on bisque.ece.ucsb.edu. If you do not see the homepage, check to make sure that port 8080 is not being used by another container or application and that you have correctly mapped the ports using -p 8080:8080, where -p is short for port.

Full Changelog: v0.7...v1.0.0