Minor Release
This release is mostly comprised of bug fixes and uploading missing files. For further information on the changes we made for the Dockerfile
, please check out the merged request below.
What's Changed
- Added BASE Dockerfile by @amilworks in #43
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
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: v1.0.0...v1.0.1