Skip to content

Commit 9d24b60

Browse files
committed
Kaizen/cleanup while testing
1 parent 379ca74 commit 9d24b60

File tree

9 files changed

+2175
-3375
lines changed

9 files changed

+2175
-3375
lines changed

NOTICE

Lines changed: 0 additions & 4 deletions
This file was deleted.

dev/postgres/Dockerfile

Lines changed: 0 additions & 3 deletions
This file was deleted.

docker-compose.db.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,15 @@
33
version: '3'
44
services:
55
db:
6-
build: ./dev/postgres
6+
image: supabase/postgres
77
ports:
88
- "5432:5432"
9+
volumes:
10+
- ./dev/postgres/mnt:/docker-entrypoint-initdb.d/
11+
command:
12+
- postgres
13+
- -c
14+
- wal_level=logical
15+
environment:
16+
POSTGRES_PASSWORD: postgres
917

docker-compose.dev.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,14 @@ services:
1616
depends_on:
1717
- db
1818
db:
19-
build: ./dev/postgres
19+
image: supabase/postgres
2020
ports:
21-
- "5432:5432"
21+
- "5432:5432"
22+
volumes:
23+
- ./dev/postgres/mnt:/docker-entrypoint-initdb.d/
24+
command:
25+
- postgres
26+
- -c
27+
- wal_level=logical
28+
environment:
29+
POSTGRES_PASSWORD: postgres

docker-compose.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,15 @@ services:
3333
HOSTNAME: localhost
3434
SECRET_KEY_BASE: SOMETHING_SUPER_SECRET
3535
db:
36-
build: ./dev/postgres
36+
image: supabase/postgres
3737
ports:
3838
- "5432:5432"
39+
volumes:
40+
- ./dev/postgres/mnt:/docker-entrypoint-initdb.d/
41+
command:
42+
- postgres
43+
- -c
44+
- wal_level=logical
45+
environment:
46+
POSTGRES_PASSWORD: postgres
3947

File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)