Merge branch 'master' of git.clinicalfuture.com:arvados
[arvados.git] / docker / README
index 806ddd1215fc1dbcef04b1a53a5b61394220c9c5..1ab5489c96372a96e8cb85d9ec2b200a56572c0f 100644 (file)
@@ -31,9 +31,9 @@ BUILDING
 
 3. Run `./build.sh' to build the following Docker images:
 
-     arvados/api    - the Arvados API server
-     arvados/keep   - Keep, the Arvados content-addressable filesystem
-     arvados/crunch - Crunch, a compute node for Arvados
+     arvados/api       - the Arvados API server
+     arvados/docserver - Arvados documentation
+     arvados/warehouse - Keep, the Arvados content-addressable filesystem
      arvados/workbench - the Arvados console
 
 DEPLOYING
@@ -49,7 +49,11 @@ DEPLOYING
    controller.$API_HOSTNAME
    workbench.$API_HOSTNAME
 
-2. Provision your Omniauth server with the APP_ID and
-   APP_SECRET from api/omniauth.rb.
+2. Deploying API:
+   docker run -p 80:80 -p 443:443 arvados/api
+
+3. Deploying Keep:
+   mkdir /tmp/keepfs
+   mount -t tmpfs -o size=512M tmpfs /tmp/keepfs
+   docker run -p 25107:25107 -v /tmp/keepfs:/dev/keep-0 arvados/warehouse
 
-3. docker run -p 80:80 -p 443:443 arvados/api