Correction in Postgrest version

This commit is contained in:
Adish M 2024-03-05 12:58:28 +05:30
parent 06744989a5
commit 94de99b769
7 changed files with 7 additions and 7 deletions

View file

@ -30,7 +30,7 @@ services:
postgrest:
container_name: postgrest
image: postgrest/postgrest:v10.1.1.20221215
image: postgrest/postgrest:v12.0.2
restart: always
depends_on:
- postgres

View file

@ -16,7 +16,7 @@ services:
command: npm run start:prod
# Uncomment if ENABLE_TOOLJET_DB=true
postgrest:
image: postgrest/postgrest:v10.1.1.20221215
image: postgrest/postgrest:v12.0.2
restart: always
env_file: .env
environment:

View file

@ -19,7 +19,7 @@ spec:
spec:
containers:
- name: postgrest
image: postgrest/postgrest:v10.1.1.20221215
image: postgrest/postgrest:v12.0.2
ports:
- containerPort: 3000
env:

View file

@ -19,7 +19,7 @@ spec:
spec:
containers:
- name: postgrest
image: postgrest/postgrest:v10.1.1.20221215
image: postgrest/postgrest:v12.0.2
ports:
- containerPort: 3000
env:

View file

@ -19,7 +19,7 @@ spec:
spec:
containers:
- name: postgrest
image: postgrest/postgrest:v10.1.1.20221215
image: postgrest/postgrest:v12.0.2
ports:
- containerPort: 3000
env:

View file

@ -52,7 +52,7 @@ services:
command: npm run --prefix server start:dev
postgrest:
image: postgrest/postgrest:v10.1.1.20221215
image: postgrest/postgrest:v12.0.2
ports:
- "3001:3000"
env_file:

View file

@ -34,7 +34,7 @@ RUN npm --prefix server run build
FROM node:18.18.2-buster
# copy postgrest executable
COPY --from=postgrest/postgrest /bin/postgrest /bin
COPY --from=postgrest/postgrest:v12.0.2 /bin/postgrest /bin
ENV NODE_ENV=production
ENV NODE_OPTIONS="--max-old-space-size=4096"