Run Apache Age with docker

ammarbaig19

Ammar-Baig19

Posted on July 30, 2023

Run Apache Age with docker

To run Apache-AGE and age-viewer using Docker, you can follow these steps:

Install Docker: First, you need to install Docker on your system. You can download and install Docker from the official website: docker.

Clone the following Github Repo:
Enter fullscreen mode Exit fullscreen mode

`git clone https://github.com/apache/age.git

Go to project directory and run the following command
git submodule update --init --recursive

Replace the age-viewer/Dockerfile with following code

FROM node:14-alpine3.2
RUN npm install pm2
WORKDIR /src
COPY . .
RUN npm run setup
EXPOSE 3000


docker compose up

Now run


localhost:3000

Enter credentials :


Connect URL : age
Connect Port : 5432
Database Name : postgresDB
User Name : postgresUser
Password : postgresPW

Apache-Age:(https://age.apache.org/)
GitHub:-https://github.com/apache/age

`

💖 💪 🙅 🚩
ammarbaig19
Ammar-Baig19

Posted on July 30, 2023

Join Our Newsletter. No Spam, Only the good stuff.

Sign up to receive the latest update from our blog.

Related