Skip to content

Commit

Permalink
[doc]Correct PostgreSQL image name in documentation (#2789)
Browse files Browse the repository at this point in the history
Co-authored-by: shown <[email protected]>
Co-authored-by: aias00 <[email protected]>
  • Loading branch information
3 people authored Oct 27, 2024
1 parent bb0a22c commit e3d09ef
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion home/docs/start/postgresql-change.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ PostgreSQL is a RDBMS emphasizing extensibility and SQL compliance. In addition
2. Install PostgreSQL with Docker

```shell
docker run -d --name postgresql -p 5432:5432 -e POSTGRES_USER=root -e POSTGRES_PASSWORD=123456 -e TZ=Asia/Shanghai postgresql:15
docker run -d --name postgresql -p 5432:5432 -e POSTGRES_USER=root -e POSTGRES_PASSWORD=123456 -e TZ=Asia/Shanghai postgres:15
```

use```$ docker ps```to check if the database started successfully
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ PostgreSQL 是一个功能强大,开源的关系型数据库管理系统(RDB
2. Docker 安装 PostgreSQL

```shell
docker run -d --name postgresql -p 5432:5432 -e POSTGRES_USER=root -e POSTGRES_PASSWORD=123456 -e TZ=Asia/Shanghai postgresql:15
docker run -d --name postgresql -p 5432:5432 -e POSTGRES_USER=root -e POSTGRES_PASSWORD=123456 -e TZ=Asia/Shanghai postgres:15
```

使用 ```$ docker ps``` 查看数据库是否启动成功
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ PostgreSQL是一个功能强大,开源的关系型数据库管理系统(RDBM
2. Docker安装 PostgreSQL

```shell
docker run -d --name postgresql -p 5432:5432 -e POSTGRES_USER=root -e POSTGRES_PASSWORD=123456 -e TZ=Asia/Shanghai postgresql:15
docker run -d --name postgresql -p 5432:5432 -e POSTGRES_USER=root -e POSTGRES_PASSWORD=123456 -e TZ=Asia/Shanghai postgres:15
```

使用```$ docker ps```查看数据库是否启动成功
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ PostgreSQL is a RDBMS emphasizing extensibility and SQL compliance. In addition
2. Install PostgreSQL with Docker

```shell
docker run -d --name postgresql -p 5432:5432 -e POSTGRES_USER=root -e POSTGRES_PASSWORD=123456 -e TZ=Asia/Shanghai postgresql:15
docker run -d --name postgresql -p 5432:5432 -e POSTGRES_USER=root -e POSTGRES_PASSWORD=123456 -e TZ=Asia/Shanghai postgres:15
```

use```$ docker ps```to check if the database started successfully
Expand Down

0 comments on commit e3d09ef

Please sign in to comment.