From d64639c70a59e3c3d337897e5a8d6ccb319afd2f Mon Sep 17 00:00:00 2001 From: "J. Ryan Stinnett" Date: Wed, 28 Oct 2020 14:32:25 +0000 Subject: [PATCH] Rename Docker repo in docs We now have a Docker repo named `element-web`, so this updates docs to match. Fixes https://github.com/vector-im/element-web/issues/14930 --- Dockerfile | 2 +- README.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 92d35e7d9a..fd20404eab 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM node:12 as builder # Support custom branches of the react-sdk and js-sdk. This also helps us build -# images of riot-web develop. +# images of element-web develop. ARG USE_CUSTOM_SDKS=false ARG REACT_SDK_REPO="https://github.com/matrix-org/matrix-react-sdk.git" ARG REACT_SDK_BRANCH="master" diff --git a/README.md b/README.md index 93494dcf0d..c54eac9dc5 100644 --- a/README.md +++ b/README.md @@ -129,14 +129,14 @@ Running from Docker The Docker image can be used to serve element-web as a web server. The easiest way to use it is to use the prebuilt image: ```bash -docker run -p 80:80 vectorim/riot-web +docker run -p 80:80 vectorim/element-web ``` To supply your own custom `config.json`, map a volume to `/app/config.json`. For example, if your custom config was located at `/etc/element-web/config.json` then your Docker command would be: ```bash -docker run -p 80:80 -v /etc/element-web/config.json:/app/config.json vectorim/riot-web +docker run -p 80:80 -v /etc/element-web/config.json:/app/config.json vectorim/element-web ``` To build the image yourself: