From ac442505c1a61cc51a360c4ee0bd4572d051b9b8 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 30 Jun 2016 09:46:35 -0700 Subject: [PATCH] Run update.sh --- arangodb/README.md | 8 +++++--- kaazing-gateway/README.md | 2 +- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/arangodb/README.md b/arangodb/README.md index 2fee606e4..8ef927dcc 100644 --- a/arangodb/README.md +++ b/arangodb/README.md @@ -114,7 +114,9 @@ unix> docker run -e ARANGO_RANDOM_ROOT_PASSWORD=1 arangodb arangod --help ## Persistent Data -ArangoDB use the volume `/var/lib/arangodb` as database directory to store the collection data and the volume `/var/lib/arangodb-apps` as apps directory to store any extensions. These directories are marked as docker volumes. +ArangoDB use the volume `/var/lib/arangodb3` as database directory to store the collection data and the volume `/var/lib/arangodb-apps3` as apps directory to store any extensions. These directories are marked as docker volumes. + +Please note that the old version 2.x used `/var/lib/arangodb` and `/var/lib/arangodb-apps`. We will refer to the 3.x variant in this document. In case you are starting a 2.x image just replace it with the 2.x variant. See `docker inspect --format "{{ .Config.Volumes}}" arangodb` for all volumes. @@ -127,7 +129,7 @@ You can map the container's volumes to a directory on the host, so that the data ```console unix> mkdir /tmp/arangodb unix> docker -e ARANGO_RANDOM_ROOT_PASSWORD=1 run -p 8529:8529 -d \ - -v /tmp/arangodb:/var/lib/arangodb \ + -v /tmp/arangodb:/var/lib/arangodb3 \ arangodb ``` @@ -150,7 +152,7 @@ unix> docker run -e ARANGO_RANDOM_ROOT_PASSWORD=1 --volumes-from arangodb-persis If want to save a few bytes you can alternatively use [busybox](https://registry.hub.docker.com/_/busybox) or [alpine](https://registry.hub.docker.com/_/alpine) for creating the volume only containers. Please note that you need to provide the used volumes in this case. For example ```console -unix> docker run -d --name arangodb-persist -v /var/lib/arangodb busybox true +unix> docker run -d --name arangodb-persist -v /var/lib/arangodb3 busybox true ``` ### Using as a base image diff --git a/kaazing-gateway/README.md b/kaazing-gateway/README.md index 8cbcac7fd..b9256ca13 100644 --- a/kaazing-gateway/README.md +++ b/kaazing-gateway/README.md @@ -1,6 +1,6 @@ # Supported tags and respective `Dockerfile` links -- [`latest`, `5.1.0` (*Dockerfile*)](https://github.com/kaazing/gateway.docker/blob/5ff4c04902f7a514533c9005476fb864fcfdc8ff/Dockerfile) +- [`latest`, `5.1.1` (*Dockerfile*)](https://github.com/kaazing/gateway.docker/blob/611ee6af26b64b7eda7ff44ff2409f49d588f6cc/Dockerfile) [![](https://badge.imagelayers.io/kaazing-gateway:latest.svg)](https://imagelayers.io/?images=kaazing-gateway:latest)