DEV Community

Ammar-Baig19
Ammar-Baig19

Posted on

Running Apache-AGE and AGE-Viewer using Docker

In order to run APACHE-AGE and AGE-View using Docker, you need to follow some steps that are mentioned below:

First You need to Install Docker on your system. Clone the following GitHub Repo:
https://github.com/apache/age.git

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

Replace the age-viewer/Dockerfile with following code
FROM node:14-alpine3.16
RUN npm install pm2
WORKDIR /src
COPY . .
RUN npm run setup
EXPOSE 3000
RUN docker compose up
After this,
Fill the form as below:

Connect URL : age
Connect Port : 5432
Database Name : postgresDB
User Name : postgresUser
Password : postgresPW
Enter fullscreen mode Exit fullscreen mode

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

Top comments (0)