fix two hardcoded reference to old version number (#7991)

This commit is contained in:
Sam Firke 2022-10-06 13:14:09 -04:00 committed by GitHub
parent 12d97423f7
commit b6ba929046
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -26,7 +26,7 @@ wget https://github.com/open-metadata/OpenMetadata/releases/download/{version}-r
``` ```
or if you wish to use postgres as the database or if you wish to use postgres as the database
``` ```
wget https://github.com/open-metadata/OpenMetadata/releases/download/0.12.0-release/docker-compose-postgres.yml wget https://github.com/open-metadata/OpenMetadata/releases/download/{version}-release/docker-compose-postgres.yml
``` ```
### 2. Backup your Data [IMPORTANT] ### 2. Backup your Data [IMPORTANT]

View File

@ -305,7 +305,7 @@ you can always run `docker compose` manually after picking up the latest `docker
```commandline ```commandline
mkdir openmetadata && cd "$_" mkdir openmetadata && cd "$_"
wget https://github.com/open-metadata/OpenMetadata/releases/download/0.11.3-release/docker-compose.yml wget https://github.com/open-metadata/OpenMetadata/releases/download/{version}-release/docker-compose.yml
docker compose up -d docker compose up -d
``` ```