9 lines
151 B
Docker
9 lines
151 B
Docker
ARG POSTGRES_VERSION=alpine
|
|
FROM postgis/postgis:${POSTGRES_VERSION}
|
|
|
|
LABEL maintainer="Mahmoud Zalt <mahmoud@zalt.me>"
|
|
|
|
CMD ["postgres"]
|
|
|
|
EXPOSE 5432
|