You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tinkerpop.apache.org by fl...@apache.org on 2018/03/05 18:52:40 UTC

tinkerpop git commit: Add description about Docker credentials TINKERPOP-1897

Repository: tinkerpop
Updated Branches:
  refs/heads/TINKERPOP-1897 a64f04ec3 -> fd4829070


Add description about Docker credentials TINKERPOP-1897


Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo
Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/fd482907
Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/fd482907
Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/fd482907

Branch: refs/heads/TINKERPOP-1897
Commit: fd482907052d86775ceebc5d439eb3f0a615c53d
Parents: a64f04e
Author: Florian Hockmann <fh...@florian-hockmann.de>
Authored: Mon Mar 5 19:52:28 2018 +0100
Committer: Florian Hockmann <fh...@florian-hockmann.de>
Committed: Mon Mar 5 19:52:28 2018 +0100

----------------------------------------------------------------------
 docs/src/dev/developer/development-environment.asciidoc | 5 +++++
 1 file changed, 5 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/fd482907/docs/src/dev/developer/development-environment.asciidoc
----------------------------------------------------------------------
diff --git a/docs/src/dev/developer/development-environment.asciidoc b/docs/src/dev/developer/development-environment.asciidoc
index c0d5389..2bd39e0 100644
--- a/docs/src/dev/developer/development-environment.asciidoc
+++ b/docs/src/dev/developer/development-environment.asciidoc
@@ -195,6 +195,11 @@ To deploy `gremlin-javascript` on the link:https://www.npmjs.com[npm registry],
 authentication information on the ~/.npmrc file. The easiest way to do that is to use the `npm adduser` command. This
 must be done only once, as the auth token doesn't have an expiration date and it's stored on your file system.
 
+Deploying Docker images to link:https://hub.docker.com/[Docker Hub] requires authentication information in the
+`~/.docker/config.json` file. This information can simply be added with the `docker login` command which will ask for
+credentials. This must be done only once. Afterwards, `docker push` can be used to push images to Docker Hub which will
+be done automatically on `mvn deploy` or it can be triggered manually with `mvn dockerfile:push`.
+
 [[building-testing]]
 == Building and Testing