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
git clone https://github.com/Munmud/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.16
RUN npm install pm2
WORKDIR /src
COPY . .
RUN npm run setup
EXPOSE 3000
Run
docker compose up
Visit URL
localhost:3000
- Fill the form as below :
- Connect URL :
age
- Connect Port :
5432
- Database Name :
postgresDB
- User Name :
postgresUser
- Password :
postgresPW
- Connect URL :
Congratulations, you have successfully run Apache-AGE and age-viewer using Docker. You can now start creating and managing graph data using Apache-AGE.
Top comments (0)