Hey all, I'm trying to run spicedb locally using d...
# spicedb
w
Hey all, I'm trying to run spicedb locally using docker compose, and I'm hitting an error of
2024-10-03 11:59:13 {"level":"error","error":"unknown command \"spicedb\" for \"spicedb\"","message":"terminated with errors"}
This is my compose definition:
Copy code
spicedb:
    image: quay.io/authzed/spicedb:latest
    ports:
      - "50051:50051"  # gRPC port
    environment:
      - SPICEDB_LOG_LEVEL=debug
      - SPICEDB_GRPC_NO_TLS=true
    command: "spicedb serve --datastore-engine memory" # Or configure another datastore as needed
7 Views