Skip to content

Commit 07518e4

Browse files
committed
UPGRADING: Refer to PostgreSQL consistently.
1 parent d17d4d8 commit 07518e4

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

UPGRADING.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -116,21 +116,21 @@ file to match, and re-start Zulip.
116116

117117
If you are using an earlier version of `galexrt/docker-zulip` which
118118
used the `quay.io/galexrt/postgres-zulip-tsearchextras:latest`
119-
Postgres image, you need to run a few manual steps to upgrade to the
120-
`zulip/zulip-postgresql` Postgres image (because we've significantly
119+
PostgreSQL image, you need to run a few manual steps to upgrade to the
120+
`zulip/zulip-postgresql` PostgreSQL image (because we've significantly
121121
upgraded the major postgres version).
122122

123123
These instructions assume that you have not changed the default
124-
Postgres data path (`/opt/docker/zulip/postgresql/data`) in your
124+
PostgreSQL data path (`/opt/docker/zulip/postgresql/data`) in your
125125
`docker-compose.yml`. If you have changed it, please replace all
126126
occurences of `/opt/docker/zulip/postgresql/data` with your path.
127127

128-
1. Make a backup of your Zulip Postgres data dir.
128+
1. Make a backup of your Zulip PostgreSQL data dir.
129129

130130
2. Stop all Zulip containers, except the postgres one (e.g. use
131131
`docker stop` and not `docker-compose stop`).
132132

133-
3. Create a new (upgraded) Postgres container using a different data directory:
133+
3. Create a new (upgraded) PostgreSQL container using a different data directory:
134134

135135
```shell
136136
docker run -d \
@@ -142,15 +142,15 @@ occurences of `/opt/docker/zulip/postgresql/data` with your path.
142142
zulip/zulip-postgresql:latest
143143
```
144144

145-
4. Use `pg_dumpall` to dump all data from the existing Postgres container to
146-
the new Postgres container:
145+
4. Use `pg_dumpall` to dump all data from the existing PostgreSQL container to
146+
the new PostgreSQL container:
147147

148148
```shell
149149
docker-compose exec database pg_dumpall -U postgres | \
150150
docker exec -i postgresnew psql -U postgres
151151
```
152152

153-
5. Stop and remove both Postgres containers:
153+
5. Stop and remove both PostgreSQL containers:
154154

155155
```shell
156156
docker-compose rm --stop database
@@ -161,7 +161,7 @@ occurences of `/opt/docker/zulip/postgresql/data` with your path.
161161
`zulip/zulip-postgresql:latest` image for the `database` container
162162
(this is the default in `zulip/docker-zulip`).
163163

164-
7. Replace the old Postgres data directory with upgraded data directory:
164+
7. Replace the old PostgreSQL data directory with upgraded data directory:
165165

166166
```shell
167167
mv /opt/docker/zulip/postgresql/data /opt/docker/zulip/postgresql/old
@@ -180,5 +180,5 @@ occurences of `/opt/docker/zulip/postgresql/data` with your path.
180180
docker-compose up
181181
```
182182

183-
That should be it. Your Postgres data has now been updated to use the
183+
That should be it. Your PostgreSQL data has now been updated to use the
184184
`zulip/zulip-postgresql` image.

0 commit comments

Comments
 (0)