We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3e4a5ed commit a42f62cCopy full SHA for a42f62c
2 files changed
docker-compose.yml
@@ -150,6 +150,19 @@ services:
150
POSTGRES_USER: homestead
151
POSTGRES_PASSWORD: secret
152
153
+### PostgreSQL PostGis Container ############################
154
+
155
+ postgres-postgis:
156
+ build: ./postgres-postgis
157
+ volumes:
158
+ - postgres:/var/lib/postgresql/data
159
+ ports:
160
+ - "5432:5432"
161
+ environment:
162
+ POSTGRES_DB: homestead
163
+ POSTGRES_USER: homestead
164
+ POSTGRES_PASSWORD: secret
165
166
### Neo4j Container #########################################
167
168
neo4j:
postgres-postgis/Dockerfile
@@ -0,0 +1,5 @@
1
+FROM mdillon/postgis:latest
2
3
+CMD ["postgres"]
4
5
+EXPOSE 5432
0 commit comments