Skip to content

Commit 94de99b

Browse files
committed
Correction in Postgrest version
1 parent 0674498 commit 94de99b

7 files changed

Lines changed: 7 additions & 7 deletions

File tree

deploy/docker/docker-compose-db.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ services:
3030

3131
postgrest:
3232
container_name: postgrest
33-
image: postgrest/postgrest:v10.1.1.20221215
33+
image: postgrest/postgrest:v12.0.2
3434
restart: always
3535
depends_on:
3636
- postgres

deploy/docker/docker-compose.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ services:
1616
command: npm run start:prod
1717
# Uncomment if ENABLE_TOOLJET_DB=true
1818
postgrest:
19-
image: postgrest/postgrest:v10.1.1.20221215
19+
image: postgrest/postgrest:v12.0.2
2020
restart: always
2121
env_file: .env
2222
environment:

deploy/kubernetes/AKS/postgrest.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ spec:
1919
spec:
2020
containers:
2121
- name: postgrest
22-
image: postgrest/postgrest:v10.1.1.20221215
22+
image: postgrest/postgrest:v12.0.2
2323
ports:
2424
- containerPort: 3000
2525
env:

deploy/kubernetes/GKE/postgrest.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ spec:
1919
spec:
2020
containers:
2121
- name: postgrest
22-
image: postgrest/postgrest:v10.1.1.20221215
22+
image: postgrest/postgrest:v12.0.2
2323
ports:
2424
- containerPort: 3000
2525
env:

deploy/kubernetes/postgrest.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ spec:
1919
spec:
2020
containers:
2121
- name: postgrest
22-
image: postgrest/postgrest:v10.1.1.20221215
22+
image: postgrest/postgrest:v12.0.2
2323
ports:
2424
- containerPort: 3000
2525
env:

docker-compose.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ services:
5252
command: npm run --prefix server start:dev
5353

5454
postgrest:
55-
image: postgrest/postgrest:v10.1.1.20221215
55+
image: postgrest/postgrest:v12.0.2
5656
ports:
5757
- "3001:3000"
5858
env_file:

docker/preview.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ RUN npm --prefix server run build
3434

3535
FROM node:18.18.2-buster
3636
# copy postgrest executable
37-
COPY --from=postgrest/postgrest /bin/postgrest /bin
37+
COPY --from=postgrest/postgrest:v12.0.2 /bin/postgrest /bin
3838

3939
ENV NODE_ENV=production
4040
ENV NODE_OPTIONS="--max-old-space-size=4096"

0 commit comments

Comments
 (0)