We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4f13309 commit 75cc436Copy full SHA for 75cc436
Makefile
@@ -0,0 +1,9 @@
1
+
2
+up:
3
+ docker-compose up -d
4
5
+down:
6
+ docker-compose down -v
7
8
+ssh:
9
+ docker exec -it postgres /bin/bash
docker-compose.yml
@@ -0,0 +1,15 @@
+version: '2'
+services:
+ postgres:
+ container_name: postgres
+ image: pyramation/postgis
+ environment:
+ - "POSTGRES_USER=postgres"
+ - "POSTGRES_PASSWORD=password"
+ ports:
10
+ - "5432:5432"
11
+ expose:
12
+ - "5432"
13
+ # volumes:
14
+ # - ./packages:/sql-extensions
15
+ # - ./node_modules:/sql-modules
0 commit comments