You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tinkerpop.apache.org by sp...@apache.org on 2021/11/10 15:18:26 UTC

[tinkerpop] branch master updated: Added hint about docker setup to dev docs CTR

This is an automated email from the ASF dual-hosted git repository.

spmallette pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git


The following commit(s) were added to refs/heads/master by this push:
     new f323cd2  Added hint about docker setup to dev docs CTR
f323cd2 is described below

commit f323cd288f552f8b1dc68c6619ed60d314fe6524
Author: Stephen Mallette <st...@amazon.com>
AuthorDate: Wed Nov 10 10:17:38 2021 -0500

    Added hint about docker setup to dev docs CTR
---
 docs/src/dev/developer/development-environment.asciidoc | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/docs/src/dev/developer/development-environment.asciidoc b/docs/src/dev/developer/development-environment.asciidoc
index 248fc3c..32cf040 100644
--- a/docs/src/dev/developer/development-environment.asciidoc
+++ b/docs/src/dev/developer/development-environment.asciidoc
@@ -261,6 +261,15 @@ mvn clean install -pl gremlin-server,gremlin-console -DdockerImages
 
 which enables the "docker-images" Maven profile.
 
+If confronted with "Permission denied" errors on Linux, it may be necessary to do the following:
+
+[source,text]
+----
+sudo groupadd docker
+sudo usermod -aG docker $USER
+newgrp docker
+----
+
 [[release-environment]]
 === Release Environment