This is an automated email from the ASF dual-hosted git repository. jmclean pushed a commit to branch downloads in repository https://gitbox.apache.org/repos/asf/gravitino-site.git
commit bd42d711d021af9012be30ccd4424b18cea442ea Author: Justin Mclean <[email protected]> AuthorDate: Thu Jul 18 12:49:30 2024 +1000 Add basic download page --- docusaurus.config.ts | 1 + src/pages/downloads.mdx | 30 ++++++++++++++++++++++++++++++ 2 files changed, 31 insertions(+) diff --git a/docusaurus.config.ts b/docusaurus.config.ts index a41de57..9c25261 100644 --- a/docusaurus.config.ts +++ b/docusaurus.config.ts @@ -77,6 +77,7 @@ const config: Config = { {to: '/', label: 'Apache Gravitino', position: 'left'}, {to: '/community', label: 'Community', position: 'right'}, {to: '/contrib', label: 'Contributing', position: 'right'}, + {to: '/downloads', label: 'Downloads', position: 'right'}, {type: 'docSidebar', sidebarId: 'docs', position: 'right', label: 'Docs'}, {to: '/blog', label: 'Blog', position: 'right'}, { diff --git a/src/pages/downloads.mdx b/src/pages/downloads.mdx new file mode 100644 index 0000000..64dba5a --- /dev/null +++ b/src/pages/downloads.mdx @@ -0,0 +1,30 @@ +## Apache Gravitino Downloads + +Apache Gravitino hasn't released any ASF software. + +## Gravitino Downloads (non ASF releases) + +Before entering the ASF incubator the Gravitino project made several releases, the latest being 0.51. + +### Gravitino 0.51 +Download [Gravitino 0.51 source and binary](https://github.com/apache/gravitino/releases/tag/v0.5.1) + +Note that this non ASF release, while they are under the Apache license, may not comply with ASF policies on releases or licensing. + +## Install Apache Gravitino using Docker + +### Get the non ASF Gravitino Docker image + +Gravitino publishes the Docker image to [Docker Hub](https://hub.docker.com/r/datastrato/gravitino/tags). + +Run the Gravitino Docker image by running: + +```shell +docker run -d -i -p 8090:8090 datastrato/gravitino:<version> +``` + +## Install non ASF Gravitino using Docker compose + +The published Gravitino Docker image only contains the Gravitino server with basic configurations. If +you want to experience the whole Gravitino system with other components, use the Docker +`compose` file found in the [Gravitino playground repository](https://github.com/apache/gravitino-playground). \ No newline at end of file
