Skip to content

Commit c032067

Browse files
authored
Remove tag from docker build commands
1 parent c4fae20 commit c032067

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -136,21 +136,21 @@ To supply your own custom `config.json`, map a volume to `/app/config.json`. For
136136
if your custom config was located at `/etc/element-web/config.json` then your Docker command
137137
would be:
138138
```bash
139-
docker run -p 80:80 -v /etc/element-web/config.json:/app/config.json vectorim/element-web
139+
docker run -p 80:80 -v /etc/element-web/config.json:/app/config.json vectorim/riot-web
140140
```
141141

142142
To build the image yourself:
143143
```bash
144144
git clone https://github.com/vector-im/element-web.git element-web
145145
cd element-web
146146
git checkout master
147-
docker build -t vectorim/element-web .
147+
docker build .
148148
```
149149

150150
If you're building a custom branch, or want to use the develop branch, check out the appropriate
151151
element-web branch and then run:
152152
```bash
153-
docker build -t vectorim/element-web:develop \
153+
docker build -t \
154154
--build-arg USE_CUSTOM_SDKS=true \
155155
--build-arg REACT_SDK_REPO="https://github.com/matrix-org/matrix-react-sdk.git" \
156156
--build-arg REACT_SDK_BRANCH="develop" \

0 commit comments

Comments
 (0)