1 Deploying Arvados in Docker Containers
2 ======================================
4 This file explains how to build and deploy Arvados servers in Docker
5 containers, so that they can be run easily in different environments
6 (a dedicated server, a developer's laptop, a virtual machine,
9 This is a work in progress; instructions will almost certainly be
10 incomplete and possibly out of date.
17 Docker is a Linux container management system based on LXC. It is a
18 very young system but is being developed rapidly. See
19 http://www.docker.io/gettingstarted/#h_installation for an
20 installation package for your platform.
27 1. Copy `config.yml.example' to `config.yml' and edit it with settings
28 for your installation.
30 2. Run `make' to build the following Docker images:
32 arvados/api - the Arvados API server
33 arvados/docserver - Arvados documentation
34 arvados/warehouse - Keep, the Arvados content-addressable filesystem
35 arvados/workbench - the Arvados console
37 You may also run `make api', `make docserver', etc. to make
38 images for individual Arvados services.
43 1. Make sure the ARVADOS_DNS_SERVER has been provisioned with the
44 following DNS entries, resolving to the appropriate IP addresses
45 where each service will be deployed.
49 compute0.$API_HOSTNAME
50 controller.$API_HOSTNAME
51 workbench.$API_HOSTNAME
54 docker run -p 80:80 -p 443:443 arvados/api
58 mount -t tmpfs -o size=512M tmpfs /tmp/keepfs
59 docker run -p 25107:25107 -v /tmp/keepfs:/dev/keep-0 arvados/warehouse