Hi guys did anyone try to change the
# spicedb
n
Hi guys, did anyone try to change the entrypoint of the spicedb image, or try to run multi command in one time in docker compose yet? I get
file not found error
with both bash and sh. Can anyone give me a hint?
v
you cannot do this in the SpiceDB container because it's built on top of a distroless image without shell.
Copy code
docker run -ti --entrypoint=/bin/sh authzed/spicedb:latest
docker: Error response from daemon: failed to create task for container: failed to create shim task: OCI runtime create failed: runc create failed: unable to start container process: exec: "/bin/sh": stat /bin/sh: no such file or directory: unknown.
ERRO[0000] error waiting for container:
for this we publish the
debug
image that comes with busybox:
Copy code
docker run -ti --entrypoint=/bin/sh authzed/spicedb:latest-debug
/ $
2 Views