You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@age.apache.org by jo...@apache.org on 2022/10/26 04:15:58 UTC

[age-website] 02/03: Removed the Docker Instructions from the Developer Manual

This is an automated email from the ASF dual-hosted git repository.

joshinnis pushed a commit to branch developer-manual
in repository https://gitbox.apache.org/repos/asf/age-website.git

commit 1058fdf64968826ca971b944040459365299f5a9
Author: Josh Innis <Jo...@gmail.com>
AuthorDate: Wed Oct 26 13:14:16 2022 +0900

    Removed the Docker Instructions from the Developer Manual
---
 docs/intro/setup.md | 39 +--------------------------------------
 1 file changed, 1 insertion(+), 38 deletions(-)

diff --git a/docs/intro/setup.md b/docs/intro/setup.md
index eb67d80..97dd27c 100644
--- a/docs/intro/setup.md
+++ b/docs/intro/setup.md
@@ -2,9 +2,6 @@
 
 ## Getting AGE
 
-### Releases
-
-The releases and release notes can be found at <https://github.com/apache/age/releases>
 
 ### Source code
 
@@ -62,7 +59,7 @@ sudo apt install postgresql-12
 
 ### Installation
 
-Clone the <a href='https://github.com/apache/age'>github repository</a> or <a href='https://github.com/apache/age/releases'>download an official release</a>
+Clone the <a href='https://github.com/apache/age'>github repository</a>
 
 Run the pg_config utility and check the version of PostgreSQL, currently only PostgreSQL versions 11 & 12 are supported. If you have any other version of postgres, you will need to install PostgreSQL version 11 & 12. Follow Setting up multiple versions of PostgreSQL
 ```console
@@ -123,40 +120,6 @@ After the installation, open a connection to a running instance of your database
 CREATE EXTENSION age;
 ```
 
-## Installing via docker image
-
-### Get the docker image
-
-```shell
-docker pull apache/age
-```
-
-### On the terminal
-
-```shell
-docker run \
-    --name myPostgresDb  \
-    -p 5455:5432 \
-    -e POSTGRES_USER=postgresUser \
-    -e POSTGRES_PASSWORD=postgresPW \
-    -e POSTGRES_DB=postgresDB \
-    -d \
-    apache/age
-```
-
-
-
-| Docker variables | Description                                        |
-| ---------------- | -------------------------------------------------- |
-| `--name `        | Assign a name to the container                     |
-| `-p`             | Publish a container's port(s) to the host          |
-| `-e`             | Set environment variables                          |
-| `-d`             | Run container in background and print container ID |
-
-
-
-## Post Installation
-
 ### Per Session Instructions
 
 For every connection of AGE you start you will need to load the AGE extension.