From a49265dea16dfb516298024e8de0594ec4122c86 Mon Sep 17 00:00:00 2001 From: Simon Fels Date: Mon, 27 Jun 2016 07:23:26 +0200 Subject: [PATCH] Use correct UID/GID ranges --- src/anbox/container.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/anbox/container.cpp b/src/anbox/container.cpp index 665a223..c2719a7 100644 --- a/src/anbox/container.cpp +++ b/src/anbox/container.cpp @@ -66,8 +66,8 @@ void Container::start() { "-m", utils::string_format("g:0:%d:1", getgid()), // For all other users inside the container we're using a subuid/ // subgid range which is defined on the host. - "-m", "u:1:100000:100000", - "-m", "g:1:100000:100000", + "-m", "u:1:100000:65536", + "-m", "g:1:100000:65536", "--", // FIXME(morphis): use system or in-click path "/home/phablet/anbox-container",