DEV Community

Moiz Ibrar
Moiz Ibrar

Posted on

Run Apache-AGE and age-viewer using Docker

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

** Docker** you need to install Docker on your system. You can download and install Docker from the official website.
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

Fill the form as below :
*Connect URL : age
Connect Port : 5432
Database Name : postgresDB
User Name : postgresUser
Password : postgresPW
*

Top comments (0)