Running keto in docker getting this error ``` unab...
# talk-keto
e
Running keto in docker getting this error
Copy code
unable to initialize config provider: open /home/ory/keto.yml: no such file or directory
docker compose file
Copy code
version: "3"
services:
  keto:
    image: oryd/keto:v0.11.1
    volumes:
      - ./keto:/home/ory
    ports:
      - "4466:4466"
      - "4467:4467"
    command: serve -c /home/ory/keto.yml
    restart: on-failure

volumes:
  keto:
directory structure
Copy code
keto/
   keto.yml
   namespaces.keto.ts
docker-compose.yaml
keto.yaml
Copy code
version: v0.11.1

dsn: memory

namespaces:
  location: file://./namespaces.keto.ts

log:
  level: debug

serve:
  read:
    host: 0.0.0.0
    port: 4466
  write:
    host: 0.0.0.0
    port: 4467