Files
maquan-springboot-template/template/cvbp/dockerfile/postgres.dockerfile
2024-10-11 15:56:51 +08:00

8 lines
241 B
Docker

FROM postgres:13.10
RUN sed -i s@/deb.debian.org/@/mirrors.aliyun.com/@g /etc/apt/sources.list
RUN apt-get clean
RUN apt-get update
RUN apt-get install wget -y
RUN apt-get install postgresql-13-postgis-3 -y
RUN apt-get install postgis -y