diff options
author | Robert Swain <rob@matrix.org> | 2017-09-29 11:40:15 +0200 |
---|---|---|
committer | Robert Swain <rob@matrix.org> | 2017-09-29 11:40:15 +0200 |
commit | 24d162814bc8c9ba05bfecac04e7218baebf2859 (patch) | |
tree | 8ad3fd68c226b88497ed0f6a3eaa6287c4ca73fc | |
parent | docker: Initial Dockerfile and docker-compose.yaml (diff) | |
download | synapse-24d162814bc8c9ba05bfecac04e7218baebf2859.tar.xz |
docker: s/matrix-org/matrixdotorg/g
-rw-r--r-- | docker/README.md | 8 | ||||
-rw-r--r-- | docker/docker-compose.yaml | 2 |
2 files changed, 5 insertions, 5 deletions
diff --git a/docker/README.md b/docker/README.md index c9e6fd216d..c15517d0e0 100644 --- a/docker/README.md +++ b/docker/README.md @@ -5,10 +5,10 @@ Build the docker image with the `docker build` command from the root of the synapse repository. ``` -docker build -t matrix-org/synapse:v0.22.1 . +docker build -t matrixdotorg/synapse:v0.22.1 . ``` -The `-t` option sets the image tag. Official images are tagged `matrix-org/synapse:<version>` where `<version>` is the same as the release tag in the synapse git repository. +The `-t` option sets the image tag. Official images are tagged `matrixdotorg/synapse:<version>` where `<version>` is the same as the release tag in the synapse git repository. ## Configure @@ -35,7 +35,7 @@ docker run \ -e REPORT_STATS=yes \ -e SERVER_NAME=example.com \ -v ${CONFIG_PATH}:/synapse/config/ \ - matrix-org/synapse:develop + matrixdotorg/synapse:v0.22.1 ``` This will create a temporary container from the image and use the synapse code for generating configuration files and TLS keys and certificates for the specified `SERVER_NAME` domain. The files are written to `CONFIG_PATH`. @@ -66,5 +66,5 @@ docker run \ -d \ --name synapse \ -v ${CONFIG_PATH}:/synapse/config/ \ - matrix-org/synapse:v0.22.1 + matrixdotorg/synapse:v0.22.1 ``` diff --git a/docker/docker-compose.yaml b/docker/docker-compose.yaml index ff36081a9b..73cc29f8fd 100644 --- a/docker/docker-compose.yaml +++ b/docker/docker-compose.yaml @@ -27,7 +27,7 @@ services: - postgres-data:/var/lib/postgresql/data/ synapse: - image: matrix-org/synapse:develop + image: matrixdotorg/synapse:v0.22.1 ports: - 8008:8008 - 8448:8448 |