HomeNews and blogs hub

Dockter: A container image builder for researchers

Bookmark this page Bookmarked

Dockter: A container image builder for researchers

Author(s)
Aleksandra Pawlik

Aleksandra Pawlik

SSI fellow

Nokome Bentley

Raniere Silva

Posted on 8 April 2019

Estimated read time: 6 min
Sections in this article
Share on blog/article:
Twitter LinkedIn

Dockter: A container image builder for researchers

Posted by s.aragon on 8 April 2019 - 10:32am Image of futuristic building and skyImage by Thomas Hawk on Flickr. CC BY-NC
​​​​2.0
. Modified by Opensource.com

By Nokome Bentley, Stencila, Aleksandra Pawlik, Stencila. Introduction by Raniere Silva, Software Sustainability Institute.

In 2017, the Software Sustainability Institute organised the Docker Containers for Reproducible Research Workshop. Two years later, containers are more present today in research, powering many platforms where coding is being developed and executed. "Dockter: A container image builder for researchers" was originally published on opensource.com and is replicated here with permission from the authors.

Dependency hell is ubiquitous in the world of software for research, and this affects research transparency and reproducibility. Containerization is one solution to this problem, but it creates new challenges for researchers. Docker is gaining popularity in the research community—but using it efficiently requires solid Dockerfile writing skills.

As a part of the Stencila project, which is a platform for creating, collaborating on, and sharing data-driven content, we are developing Dockter, an open source tool that makes it easier for researchers to create Docker images for their projects. Dockter scans a research project's source code, generates a Dockerfile, and builds a Docker image. It has a range of features that allow flexibility and can help researchers learn more about working with Docker.

Dockter also generates a JSON file with information about the software environment (based on CodeMeta and Schema.org) to enable further processing and interoperability with other tools.

Several other projects create Docker images from source code and/or requirements files, including: alibaba/derrick, jupyter/repo2docker, Gueils/whales, o2r-project/containerit; openshift/source-to-image, and ViDA-NYU/reprozip. Dockter is similar to repo2docker, containerit, and ReproZip in that it is aimed at researchers doing data analysis (and supports R), whereas most other tools are aimed at software developers (and don't support R).

Dockter differs from these projects principally in that it:

  • Uses package databases to determine package system dependencies and generate linked metadata (containerit does this for R)

  • Installs language package dependencies quicker (which can be useful during research projects where dependencies often change)

  • By default but optionally, installs Stencila packages so that Stencila client interfaces can execute code in the container

Dockter's features

Following are some of the ways researchers can use Dockter.

Generating Docker images from code

Dockter scans a research project folder and builds a Docker image for it. If the folder already has a Dockerfile, Dockter will build the image from that. If not, Dockter will scan the source code files in the folder and generate one. Dockter currently handles R, Python, and Node.js source code. The .dockerfile (with the dot at the beginning) it generates is fully editable so users can take over from Dockter and carry on with editing the file as they see fit.

If the folder contains an R package DESCRIPTION file, Dockter will install the R packages listed under Imports into the image. If the folder does not contain a DESCRIPTION file, Dockter will scan all the R files in the folder for package import or usage statements and create a .DESCRIPTION file.

If the folder contains a requirements.txt file for Python, Dockter will copy it into the Docker image and use pip to install the specified packages. If the folder does not contain either of those files, Dockter will scan all the folder's .py files for import statements and create a .requirements.txt file.

If the folder contains a package.json file, Dockter will copy it into the Docker image and use npm to install the specified packages. If the folder does not contain a package.json file, Dockter will scan all the folder's .js files for require calls and create a .package.json file.

Capturing system requirements automatically

One of the headaches researchers face when hand-writing Dockerfiles is figuring out which system dependencies their project needs. Often this involves a lot of trial and error. Dockter automatically checks if any dependencies (or dependencies of dependencies, or dependencies of…) require system packages and installs those into the image. No more trial and error cycles of build, fail, add dependency, repeat…

Reinstalling language packages faster

If you have ever built a Docker image, you know it can be frustrating waiting for all your project's dependencies to reinstall when you add or remove just one.

This happens because of Docker's layered filesystem: When you update a requirements file, Docker throws away all the subsequent layers—including the one where you previously installed your dependencies. That means all the packages have to be reinstalled.

Dockter takes a different approach. It leaves the installation of language packages to the language package managers: Python's pip, Node.js's npm, and R's install.packages. These package managers are good at the job they were designed for: checking which packages need to be updated and updating only them. The result is much faster rebuilds, especially for R packages, which often involve compilation.

Dockter does this by looking for a special # dockter comment in a Dockerfile. Instead of throwing away layers, it executes all instructions after this comment in the same layer—thereby reusing packages that were previously installed.

Generating structured metadata for a project

Dockter uses JSON-LD as its internal data structure. When it parses a project's source code, it generates a JSON-LD tree using vocabularies from schema.org and CodeMeta.

Dockter also fetches metadata on a project's dependencies, which could be used to generate a complete software citation for the project.

Easy to pick up, easy to throw away

Dockter is designed to make it easier to get started creating Docker images for your project. But it's also designed to not get in your way or restrict you from using bare Docker. You can easily and individually override any of the steps Dockter takes to build an image.

  • Code analysis: To stop Dockter from doing code analysis and specify your project's package dependencies, just remove the leading . (dot) from the .DESCRIPTION, .requirements.txt, or .package.json files.

  • Dockerfile generation: Dockter aims to generate readable Dockerfiles that conform to best practices. They include comments on what each section does and are a good way to start learning how to write your own Dockerfiles. To stop Dockter from generating a .Dockerfile and start editing it yourself, just rename it Dockerfile (without the leading dot).

Install Dockter

Dockter is available as pre-compiled, standalone command line tool or as a Node.js package. Click here for a demo.

We welcome and encourage all contributions!

A longer version of this article is available on the project's GitHub page.

Share on blog/article:
Twitter LinkedIn