File tree Expand file tree Collapse file tree 2 files changed +24
-1
lines changed Expand file tree Collapse file tree 2 files changed +24
-1
lines changed Original file line number Diff line number Diff line change @@ -101,6 +101,16 @@ services:
101
101
# TODO: https://github.com/supabase/storage-api/issues/55
102
102
REGION : stub
103
103
GLOBAL_S3_BUCKET : stub
104
+ pg-meta :
105
+ container_name : supabase-pg-meta
106
+ image : supabase/postgres-meta:v0.26.1
107
+ depends_on :
108
+ - db
109
+ restart : unless-stopped
110
+ environment :
111
+ PG_META_PORT : 8080
112
+ PG_META_DB_HOST : db
113
+ PG_META_DB_PASSWORD : ${POSTGRES_PASSWORD}
104
114
db :
105
115
container_name : supabase-db
106
116
image : supabase/postgres:13.3.0
Original file line number Diff line number Diff line change @@ -67,7 +67,7 @@ services:
67
67
config :
68
68
hide_credentials : false
69
69
- name : storage-v1
70
- _comment : " Storage: /storage/v1/* -> http://storage-api :5000/*"
70
+ _comment : " Storage: /storage/v1/* -> http://storage:5000/*"
71
71
url : http://storage:5000/
72
72
routes :
73
73
- name : storage-v1-all
@@ -76,6 +76,19 @@ services:
76
76
- /storage/v1/
77
77
plugins :
78
78
- name : cors
79
+ - name : pg-meta
80
+ _comment : " pg-meta: /pg/* -> http://pg-meta:8080/*"
81
+ url : http://pg-meta:8080/
82
+ routes :
83
+ - name : pg-meta-all
84
+ strip_path : true
85
+ paths :
86
+ - /pg/
87
+ plugins :
88
+ - name : cors
89
+ - name : key-auth
90
+ config :
91
+ hide_credentials : true
79
92
consumers :
80
93
- username : anon
81
94
keyauth_credentials :
You can’t perform that action at this time.
0 commit comments