joefagan edited a comment on issue #110:
URL: https://github.com/apache/incubator-age/issues/110#issuecomment-909414474
There will be an official incubator-age official docker image soon.
Meanwhile you can do it yourself like this. Takes a few minutes.
I got this from sorrell/docker-agensgraph-extension/dockerfile
Let me know if it works
create a file called Dockerfile in the some directory with the following
contents
```
FROM postgres:11
RUN apt-get update
RUN apt-get install --assume-yes --no-install-recommends
--no-install-suggests \
bison \
build-essential \
ca-certificates \
flex \
git \
postgresql-plpython3-11 \
postgresql-server-dev-11
RUN git clone https://github.com/apache/incubator-age /age
RUN cd /age && make install
```
Then build the image with
`docker build -t misterion/age .`
then
`docker run -it -e POSTGRES_PASSWORD=mypassword misterion/age`
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]