Trying to run this `docker run --rm --name cerbos ...
# help
a
Trying to run this
docker run --rm --name cerbos -d -v $(pwd)/cerbos-quickstart:/quickstart -p 3592:3592 <http://ghcr.io/cerbos/cerbos:0.34.0|ghcr.io/cerbos/cerbos:0.34.0> server --config=/quickstart/.cerbos.yaml
with custom but it just getting random ID as output but docker is not running. I want to run configuration inside this project https://github.com/cerbos/nextjs-prisma-cerbos any help ? as per this document https://docs.cerbos.dev/cerbos/latest/installation/container
1
This is issue resolved. removing
-d
it works.
a
Yep -
-d
means "detached". The container will run in the background and Docker will print the container ID to the terminal. You can check on the running container with
docker ps
.