From f404ad4a2719336d84925f55541ad2f4337997fb Mon Sep 17 00:00:00 2001 From: Age Manning Date: Tue, 1 Sep 2020 11:06:21 +1000 Subject: [PATCH] =?UTF-8?q?Revert=20"Creates=20a=20new=20lighthouse=20user?= =?UTF-8?q?=20and=20makes=20it=20the=20default=20user=20to=20be=20use?= =?UTF-8?q?=E2=80=A6=20(#1502)"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This reverts commit 7d71d98dc179e689726d74bc5c4bc1781315df8f. --- Dockerfile | 2 -- book/src/docker.md | 6 +++--- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index 9840e294207..9f6158b7391 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,7 +12,5 @@ RUN apt-get update && apt-get install -y --no-install-recommends \ ca-certificates \ && apt-get clean \ && rm -rf /var/lib/apt/lists/* -RUN groupadd -r lighthouse && useradd --no-log-init -r -g lighthouse lighthouse -USER lighthouse COPY --from=builder /usr/local/cargo/bin/lighthouse /usr/local/bin/lighthouse COPY --from=builder /usr/local/cargo/bin/lcli /usr/local/bin/lcli diff --git a/book/src/docker.md b/book/src/docker.md index dcb05a1f976..8a09e2bb4c9 100644 --- a/book/src/docker.md +++ b/book/src/docker.md @@ -53,7 +53,7 @@ $ docker run lighthouse:local lighthouse --help You can run a Docker beacon node with the following command: ```bash -$ docker run -p 9000:9000 -p 127.0.0.1:5052:5052 -v $HOME/.lighthouse:/home/lighthouse/.lighthouse sigp/lighthouse lighthouse --testnet medalla beacon --http --http-address 0.0.0.0 +$ docker run -p 9000:9000 -p 127.0.0.1:5052:5052 -v $HOME/.lighthouse:/root/.lighthouse sigp/lighthouse lighthouse --testnet medalla beacon --http --http-address 0.0.0.0 ``` > To join the altona testnet, use --testnet altona instead. @@ -62,7 +62,7 @@ $ docker run -p 9000:9000 -p 127.0.0.1:5052:5052 -v $HOME/.lighthouse:/home/ligh ### Volumes -Lighthouse uses the `/home/lighthouse/.lighthouse` directory inside the Docker image to +Lighthouse uses the `/root/.lighthouse` directory inside the Docker image to store the configuration, database and validator keys. Users will generally want to create a bind-mount volume to ensure this directory persists between `docker run` commands. @@ -71,7 +71,7 @@ The following example runs a beacon node with the data directory mapped to the users home directory: ```bash -$ docker run -v $HOME/.lighthouse:/home/lighthouse/.lighthouse sigp/lighthouse lighthouse beacon +$ docker run -v $HOME/.lighthouse:/root/.lighthouse sigp/lighthouse lighthouse beacon ``` ### Ports