diff --git a/README.md b/README.md index b243c49d3..f8d27ee5e 100644 --- a/README.md +++ b/README.md @@ -138,8 +138,7 @@ You can use a package management
```bash -sudo apt install postgresql - +sudo apt install postgresql ```

 Install From Source Code @@ -180,9 +179,8 @@ make PG_CONFIG=/path/to/postgres/bin/pg_config install ```bash docker pull apache/age - ``` -

Create AGE docker container
+
Create AGE docker container for first time
```bash docker run \ @@ -195,7 +193,23 @@ docker run \ apache/age ``` +
Or Run docker container if you previously worked with AGE container
+ +```bash +docker start age +``` + +
Access CLI for running AGE container
+```bash +docker exec -it age /bin/bash +``` + +
Access Postgres shell
+ +```bash +psql -U postgresUser postgresDB +```

  Post Installation