From 3379575cceefe8bfd28bee863be02f969ce73f28 Mon Sep 17 00:00:00 2001 From: Alexander Schlarb Date: Wed, 4 Apr 2018 20:50:51 +0200 Subject: [PATCH] Recommend running the container with local user privileges to ensure consistent file premission when building --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index dc64cb7..6863880 100644 --- a/README.md +++ b/README.md @@ -7,5 +7,5 @@ Android SDK with this image, you'll need to mount your own local copy. It can be run using: ```console -$ docker run --rm -v $(pwd):/repo registry.gitlab.com/fdroid/docker-executable-fdroidserver:latest +$ docker run --rm -u $(id -u):$(id -g) -v $(pwd):/repo registry.gitlab.com/fdroid/docker-executable-fdroidserver:latest ```