You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kvrocks.apache.org by hu...@apache.org on 2023/06/21 14:35:48 UTC

[incubator-kvrocks] branch unstable updated: Fix incorrect mount data in docker volume (#1507)

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

hulk pushed a commit to branch unstable
in repository https://gitbox.apache.org/repos/asf/incubator-kvrocks.git


The following commit(s) were added to refs/heads/unstable by this push:
     new e9ff4718 Fix incorrect mount data in docker volume (#1507)
e9ff4718 is described below

commit e9ff47186e08e6e673119f1d2db0285276b885dc
Author: Aleks Lozovyuk <al...@gmail.com>
AuthorDate: Wed Jun 21 17:35:42 2023 +0300

    Fix incorrect mount data in docker volume (#1507)
---
 Dockerfile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Dockerfile b/Dockerfile
index 20412560..d4d68622 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -30,7 +30,7 @@ FROM alpine:3.16
 RUN apk upgrade && apk add libexecinfo
 RUN mkdir /var/run/kvrocks && mkdir /var/lib/kvrocks
 RUN addgroup -S kvrocks && adduser -D -H -S -G kvrocks kvrocks
-RUN chown kvrocks:kvrocks /var/run/kvrocks && chown kvrocks:kvrocks /var/lib/kvrocks
+RUN chown kvrocks:kvrocks /var/run/kvrocks
 
 USER kvrocks
 VOLUME /var/lib/kvrocks