Skip to content

taverna-extras/taverna-server-docker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

32 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Taverna Server Docker

Docker image set up for Apache Taverna Server.

See the documentation for details.

For production use you should use this as a base image and set more secure passwords, etc.

The pre-built image is available on the Docker Hub as taverna/taverna-server.

Image details

  • Base image: tomcat:8-jre8
  • Port: 8080 (http), 8009 (AJP)
  • Taverna user: taverna
  • Taverna password: taverna
  • Taverna Server root: /
  • Shared volumes: /tmp
  • REST API: http://localhost:8080/rest/ (replace with full hostname)
  • WSDL API: http://localhost:32778/soap?wsdl (replace with full hostname)

Usage

It is assumed that you have installed Docker on your machine. There are comprehensive installation instructions for many platforms on the Docker documentation site.

Please refer to the Docker User Guide for the following sections.

Using the pre-built image

You can pull the pre-built image in the usual way:

$ sudo docker pull taverna/taverna-server:<tag>

When running the container you will need to map the port number that tomcat listens on to a port on your machine. In most cases you will also want to run the container as a daemon.

The following example runs the container tagged with 3.1.0 as a daemon, gives it a name (taverna) and maps the port 8081 on the local machine to go to the Tomcat port (8080) within the Docker container.

$ sudo docker run -p 8081:8080 -d --name taverna taverna/taverna-server:3.1.0

The following addresses are now accessible from your Web browser:

  • http://localhost:8081: Taverna Server root

Note that the hostname you first access Taverna Server with will be used in subsequent replies, so remember to access with the full hostname if the installation is to be used outside localhost.

Default users

The docker image has 3 default users included, see the file users.properties for more info.
taverna: password 'taverna'
taverna_alt: password 'qwerty'
admin: password ADMIN
You should change these via the admin interface available via /admin.

Building the image from scratch

Clone this repository to your local machine and run:

$ sudo docker build -t <yourname>/<imagename>:<tag> server/

or

$ cd server
$ sudo docker build -t <yourname>/<imagename>:<tag> .

yourname, imagename and tag can be whatever you like but should be sensible if you will be uploading the resulting image to the Docker Hub

You can now run the resulting image as above:

$ sudo docker run -p 8080:8080 -d <yourname>/<imagename>:<tag>

Add a --name option if you would rather not let docker assign a default name for your container.

Debugging a running container

The container share some useful volumes so that you can see what is happening while it is running. You can simply run another container and connect to these volumes to see logs and temporary files in the Taverna Server container. The volumes exported are:

  • /tmp: Taverna Server temporary data for each workflow execution.

You can see the Tomcat logs from a running docker container named taverna using:

docker logs taverna

Assuming you started your Taverna Server container with the name taverna, then to view the shared data run:

$ sudo docker run -i -t --volumes-from taverna ubuntu:14.04 /bin/bash

You can also jump into the running Taverna Server Tomcat container using:

$ sudo docker exec -it taverna /bin/bash

About

Docker image set up for a generic Taverna Server

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •