Hello everyone
I’m trying to run event store using docker in windows, but for some reason, my projections start stopped.
Here is what im executing
docker run --name eventstore-node -p 2113:2113 -p 1113:1113 eventstore/eventstore --run-projections=ALL --start-standard-projections=TRUE
Also tried running as environment variables
docker run --name eventstore-node -p 2113:2113 -p 1113:1113 -e EVENTSTORE_RUN_PROJECTIONS=All -e EVENTSTORE_START_STANDARD_PROJECTIONS=TRUE eventstore/eventstore
And
docker run --name eventstore-node -p 2113:2113 -p 1113:1113 -e EVENTSTORE_RUN_PROJECTIONS=System eventstore/eventstore
This is how my projections are shown after running the docker container
Does anyone have a clue about what is going on?