如果问题不清楚或没有足够的信息,请告诉我,因为我已尽力根据我的理解提出我的问题......
我正在尝试使用 Hasura GraphQL Engine 配置 Crunchy Postgres 图像,我尝试按照文档的建议更改主机名,但它根本没有连接到我的 Crunchy Postgres 图像。
文档链接:
https://docs.hasura.io/1.0/graphql/manual/deployment/docker/index.html
https://hub.docker.com/r/crunchydata/crunchy-postgres/
我的 Docker 撰写文件:
version: '3.5'
services:
unipgdb:
image: crunchydata/crunchy-postgres:centos7-11.1-2.3.0
restart: always
ports:
- "5432:5432"
env_file:
- ./config/postgres/cpg-env.list
volumes:
- unipgdata_volume:/var/lib/postgresql/data
networks:
- unicausalapi
graphql-engine:
image: hasura/graphql-engine:v1.0.0-alpha37
ports:
- "8080:80"
depends_on:
- "unipgdb"
restart: always
environment:
HASURA_GRAPHQL_DATABASE_URL: postgres://user:password@postgres:5432/unipgdb
HASURA_GRAPHQL_ENABLE_CONSOLE: "true" # set to "false" to disable console
## uncomment next line to set an access key
# HASURA_GRAPHQL_ACCESS_KEY: mysecretaccesskey
networks:
- unicausalapi
# For Hasura engine
caddyhasura:
build:
context: .
dockerfile: caddyhasura-Dockerfile
depends_on:
- graphql-engine
networks:
- unicausalapi
- unicausalpublic
- unicausalnetwork
volumes:
static_volume: # <-- declare the static volume
media_volume: # <-- declare the media volume
unipgdata_volume:
external: true
networks:
unicausalpublic:
external: true
unicausalnetwork:
external: true
unicausalapi:
external: true
在 caddyhasura 服务的 Caddyfile 中,它只是容器 graphql-engine 上的反向代理,所以它不应该影响我的问题。
我想我用主机名错误地配置了 HASURA_GRAPHQL_DATABASE_URL 因为我不确定使用 crunchy-postgres:centos7 图像应该放什么。
我在 Docker 日志中收到此错误
如何配置它以使用这些图像与我的 docker-compose 文件一起使用?
HASURA_GRAPHQL_DATABASE_URL: postgres://user:password@postgres:5432/unipgdb
关于如何尝试解决我的问题的任何想法?提前致谢。