mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-24 09:28:31 +00:00
Correction in Postgrest version
This commit is contained in:
parent
06744989a5
commit
94de99b769
7 changed files with 7 additions and 7 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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:
|
||||
|
|
|
|||
|
|
@ -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:
|
||||
|
|
|
|||
|
|
@ -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:
|
||||
|
|
|
|||
|
|
@ -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:
|
||||
|
|
|
|||
|
|
@ -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:
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Reference in a new issue