Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix for arangodb 3.7 and 3.8 #11257

Merged
merged 1 commit into from
Nov 8, 2021
Merged

Conversation

KVS85
Copy link
Contributor

@KVS85 KVS85 commented Nov 8, 2021

@github-actions
Copy link

github-actions bot commented Nov 8, 2021

Diff for 4b36019:
diff --git a/_bashbrew-cat b/_bashbrew-cat
index 1386a3b..f854068 100644
--- a/_bashbrew-cat
+++ b/_bashbrew-cat
@@ -3,9 +3,9 @@ GitRepo: https://github.com/arangodb/arangodb-docker
 GitFetch: refs/heads/official
 
 Tags: 3.7, 3.7.15
-GitCommit: cd9cff3458077a32daaf1d6d31899056c08a07c6
+GitCommit: d46dfa818833436aa89907a045c803de84c7868a
 Directory: alpine/3.7.15
 
 Tags: 3.8, 3.8.2, latest
-GitCommit: 34ce33f775f78db8a0a2f8c3aa3825e333a1dbff
+GitCommit: d46dfa818833436aa89907a045c803de84c7868a
 Directory: alpine/3.8.2
diff --git a/arangodb_3.7.15/Dockerfile b/arangodb_3.7.15/Dockerfile
index e883ff9..655d6c6 100644
--- a/arangodb_3.7.15/Dockerfile
+++ b/arangodb_3.7.15/Dockerfile
@@ -27,8 +27,8 @@ RUN apk add --no-cache gnupg pwgen binutils numactl numactl-tools nodejs yarn &&
         -e 's!^(file\s*=\s*).*!\1 -!' \
         -e 's!^\s*uid\s*=.*!!' \
         /etc/arangodb3/arangod.conf        && \
-    echo chgrp -R 0 /var/lib/arangodb3 /var/lib/arangodb3-apps && \
-    echo chmod -R 775 /var/lib/arangodb3 /var/lib/arangodb3-apps && \
+    chgrp -R 0 /var/lib/arangodb3 /var/lib/arangodb3-apps && \
+    chmod -R 775 /var/lib/arangodb3 /var/lib/arangodb3-apps && \
     rm -f /usr/bin/foxx && \
     rm -f ${ARANGO_PACKAGE}* data.tar.gz && \
     apk del gnupg
diff --git a/arangodb_latest/Dockerfile b/arangodb_latest/Dockerfile
index 0f07e13..1dca3f7 100644
--- a/arangodb_latest/Dockerfile
+++ b/arangodb_latest/Dockerfile
@@ -27,8 +27,8 @@ RUN apk add --no-cache gnupg pwgen binutils numactl numactl-tools nodejs yarn &&
         -e 's!^(file\s*=\s*).*!\1 -!' \
         -e 's!^\s*uid\s*=.*!!' \
         /etc/arangodb3/arangod.conf        && \
-    echo chgrp -R 0 /var/lib/arangodb3 /var/lib/arangodb3-apps && \
-    echo chmod -R 775 /var/lib/arangodb3 /var/lib/arangodb3-apps && \
+    chgrp -R 0 /var/lib/arangodb3 /var/lib/arangodb3-apps && \
+    chmod -R 775 /var/lib/arangodb3 /var/lib/arangodb3-apps && \
     rm -f /usr/bin/foxx && \
     rm -f ${ARANGO_PACKAGE}* data.tar.gz && \
     apk del gnupg

Relevant Maintainers:

@yosifkit yosifkit merged commit 3264067 into docker-library:master Nov 8, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Folder Permission in Alpine images are not root group writeable
2 participants