Hey I'm trying to call keto check inside docker co...
# talk-keto
l
Hey I'm trying to call keto check inside docker container and getting such error keto check John edit messages msg1 neither flag --read-remote nor env var KETO_READ_REMOTE are set, falling back to 127.0.0.1:4466 Error: context deadline exceeded If I'm using rest API there are no problems What can be a reason for that?
compose file is very simple
Copy code
version: "3"
services:
  keto:
    image: oryd/keto:v0.10.0-alpha.0
    ports:
      - "4466:4466"
      - "4467:4467"
    command: serve -c /home/ory/keto.yml
    restart: on-failure
    volumes:
      - type: bind
        source: ./config/keto.yml
        target: /home/ory/keto.yml
It looks like keto client just can't reach service
s
It looks like keto client just can't reach service
agreed 😅
what about tls? I think you have to pass the
--insecure
flag since the latest release
did you try that?
l
where should I pass it? I tried to pass it with check command - unknown flag And also for serve command
--insecure-disable-transport-security solved thx
s
ah yes that one
sry
m
should we document this, or do you have it on the list @steep-lamp-91158?
s
I guess it is documented by
keto relation-tuples check --help
?