1
0
Fork 0
mirror of https://github.com/kou029w/_.git synced 2025-01-30 22:08:02 +00:00
This commit is contained in:
Nebel 2023-12-19 14:23:30 +09:00
parent 4993bec7dc
commit 87aeeafd13
Signed by: nebel
GPG key ID: 79807D08C6EF6460

View file

@ -1,12 +1,12 @@
services:
db:
image: postgres:14-alpine
image: postgres:16-alpine
environment:
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
volumes:
- db_data:/var/lib/postgresql/data
hasura:
image: hasura/graphql-engine:v2.10.1.cli-migrations-v3
image: hasura/graphql-engine:v2.36.1-ce.cli-migrations-v3.ubi
depends_on: [db]
environment:
HASURA_GRAPHQL_DATABASE_URL: postgres://postgres:${POSTGRES_PASSWORD}@db:5432/postgres
@ -21,7 +21,7 @@ services:
ports:
- "8080:8080"
postgrest:
image: postgrest/postgrest:v10.0.0
image: postgrest/postgrest:v12.0.1
depends_on: [db]
environment:
PGRST_DB_URI: postgres://postgres:${POSTGRES_PASSWORD}@db:5432/postgres