如果问题不清楚或信息不足,请让我知道,因为我已尽我所能介绍我的问题...
我正在尝试使用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-Compose文件:
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 Log中收到此错误
我如何配置它以使用这些图像处理我的docker-compose文件?
HASURA_GRAPHQL_DATABASE_URL: postgres://user:password@postgres:5432/unipgdb
关于如何尝试解决我的问题的任何想法?预先感谢。
答案 0 :(得分:1)
由于Crunchy Postgres容器的名称为unipgdb
,因此该容器的主机名将相同。代替postgres
作为主机名,您应该使用它。
因此,您的数据库网址将变为
HASURA_GRAPHQL_DATABASE_URL: postgres://user:password@unipgdb:5432/unipgdb
如果您的用户名或密码包含特殊字符(例如$,#,@等),请确保您对URL进行编码并在URL中使用它们。参考:https://www.degraeve.com/reference/urlencoding.php
例如如果密码为secretPassW$or#
,则应输入secretPassW%24or%23