Skip to content

Instantly share code, notes, and snippets.

@jmchilton
Created June 28, 2014 23:54
Show Gist options
  • Save jmchilton/6cb3a7c2d24a7ebfdd12 to your computer and use it in GitHub Desktop.
Save jmchilton/6cb3a7c2d24a7ebfdd12 to your computer and use it in GitHub Desktop.
Simplest possible job_conf.xml to allow Galaxy to run tools in docker containers.
<?xml version="1.0"?>
<job_conf>
<plugins>
<plugin id="local" type="runner" load="galaxy.jobs.runners.local:LocalJobRunner" workers="4"/>
</plugins>
<handlers>
<handler id="main"/>
</handlers>
<destinations>
<destination id="local" runner="local">
<param id="docker_enabled" />
</destination>
</destinations>
</job_conf>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment