Step 2. Testing Your Module
Testing Module
You can now start testing your module in Bisque. The first step is to edit your Dockerfile to create a new image that will include all the extra layers required for Bisque communication.
Editing Dockerfile
It is necessary to append a few commands to your Dockerfile. These commands will install dependencies needed for python 3 modules, create the necessary folder structure, and copy the required files and folders into your module container. If your module is written in Python 3, you need to make sure to copy the bqapi
folder from this repo in your {ModuleName}
folder as described above.
Here is the updated Dockerfile for a simple Edge Detection module: Remember to change the .xml file name to your {ModuleName}.xml file
Creating Module Image
Once you update the Dockerfile, create a new Docker image by running the following command from your {ModuleName}
folder. Note that docker images must have lowercase names and tags. The biodev.ece.ucsb.edu:5000/
prefix is needed for Bisque to pull the image. Once you are ready to deploy your application to production, you will push this image to the specified repo.
It is good practice to specify a {tagname}
that identifies the image versions. As you add functionalities and customize your module, it is a good idea to keep track of the various stable images of your module. By default, Docker will tag the image latest
if a tag is not provided. The following are a few example of how you could tag your images:
You can also overwrite images by building with same {modulename}:{tagname}
until you get to a point in which you want to keep that specific image as reference.
Updating runtime-module-cfg
The runtime module configuration file specifies the image that Bisque will pull when a user runs your module.
The only line that should be updated is docker.image = {modulename}:{tagname}
. This should specify the Docker image and tag name that you wish to test or deploy on Bisque. This file will be called when a user hits the Run
button in your module's page on Bisque. Note that the prefix biodev.ece.ucsb.edu:5000/
is not included in this line, Bisque will prepend it before pulling your local image.
This is an example of a runtime-module.cfg
for the EdgeDetection module:
Running Bisque Container
Download the latest Bisque module development image by running:
The following command will launch a container named bisque
on http://{your.private.ip.address}:8080/
. The option --v $(pwd):/source/modules
will mount your local module located in your current directory $(pwd)
to your container at /source/modules
. The -v /var/run/docker.sock:/var/run/docker.sock
option will enable access to your local docker containers within the BisQue dev container. This is crucial because modules are ran as containers themselves so if you cannot run a container within a container, you will get an error.
Logging Into Bisque
Navigate to http://{your.private.ip.address}:8080/
on any web browser and Bisque should be up and running. For example, if my ip address is 192.168.181.345
, you would navigate to http://192.168.181.345:8080/
. You can find your private ip address by running:
or
It will be the address that has twelve digits with a period after every third digit. You can also read the following article (Windows, Mac) or article (Linux) to find your private ip address if the previous commands didn't work.
If Bisque is not up, go into the container with docker run -it amilworks/bisque-module-dev:git bash
and check the bisque_8080.log
to debug. Report any issues on the Bisque GitHub.
Login as admin using the credentials:
Upload Data
You can now upload any data that you need to test your module. In the top menu bar, go to Upload -> Choose files -> Upload (at the bottom)
. Exit out of the pop-up window and move on to register your module.
Register Module
In the top right hand corner, go to Bisque admin -> Module Manager
. In the right panel, Engine Modules
, fill in the Engine URL with:
You can find your private ip address as mentioned above.
Click Load
to show all the modules that are in the Modules
folder you mounted when running the Bisque docker image. Drag and drop the module you want to test from the right panel to the left and exit out of the setting window.
If you don't see any modules on this list, go throught the following debug process:
Check that the
Engine URL
is correct. If your ip address is192.168.181.345
for example, your engine url should behttp://192.168.181.345:8080/engine_service
.Make sure that the mounted folder
-v $(pwd):/source/modules
contains the{ModuleName}
folders of the modules you want to test. You should be in yourModules
folder when running the docker container.Make sure that the
.xml
file in your{ModuleName}
folder and the{ModuleName}
folder have the same name. For example, for theEdgeDetection
module, {ModuleName} should beEdgeDetection
and the.xml
should be namedEdgeDetection.xml
.Make sure that your
{ModuleName}
folder has aruntime-module.cfg
file.
Running Module
To run your module, click the Analyse
button from the top menu bar and choose your module. If you don't see your module, refresh the page and try again.
Last updated