Admin UI buttons disabled

I am running the latest version of Event Store in a Docker Container using:
docker run --name eventstore-node -it -p 2113:2113 -p 1113:1113 eventstore/eventstore --insecure --enable-external-tcp

When I go to the Admin UI the only buttons available are Dashboard, Persistent Subscriptions, and Admin.
The following are greyed out: Stream Browser, Projections, Query, Users, Log out.

I am able to both write to and read from Event Store using my .NET API. It’s just the Admin UI that isn’t working.

Any ideas?

Projections are enabled using the --run-projections setting, disabled by default.

Since you are running in insecure mode, there’s no authentication and authorisation, that’s why there’s no Users and Logout.

Query is disabled because projections are disabled since queries are done using projections.

Stream browser is disabled because it uses the AtomFeed protocol, which is disabled by default. You can use the --enable-atom-pub-over-http option to enable it.