Why does my EventStore Docker container stop when using the given command?

110 Views Asked by At

I install and run EventStore with this command:

docker run --name eventstore-node -d -p 2113:2113 -p 1113:1113 eventstore/eventstore

the container stops when running

log file image: click here

I did the comments here didn't help me

1

There are 1 best solutions below

3
Alexey Zimarev On

It tells you what's wrong in the log. You either need to provide the certificates configuration, or the insecure option. If you want the embedded UI to work, you also need to enable AtomPub.

If you copy-paste the command from the docs, it will work.

docker run --name esdb-node -it -p 2113:2113 -p 1113:1113 \
    eventstore/eventstore:latest \
    --insecure \
    --run-projections=All \
    --enable-atom-pub-over-http