Change admin password, create new user

Hello,
I want change admin password. Now I have default “changeit” password.
But when I try to calling API which is in documentation. It calls me 404 Page not found.
Im using this docker-compose file:

version: "3.4"

services:

  eventstore.db:

    image: eventstore/eventstore

    environment:

      - EVENTSTORE_CLUSTER_SIZE=1

      - EVENTSTORE_RUN_PROJECTIONS=All

      - EVENTSTORE_START_STANDARD_PROJECTIONS=true

      - EVENTSTORE_EXT_TCP_PORT=1113

      - EVENTSTORE_HTTP_PORT=2113

      - EVENTSTORE_INSECURE=true

      - EVENTSTORE_ENABLE_EXTERNAL_TCP=true

      - EVENTSTORE_ENABLE_ATOM_PUB_OVER_HTTP=true

    ports:

      - "1113:1113"

      - "2113:2113"

    volumes:

      - type: volume

        source: eventstore-volume-data

        target: /var/lib/eventstore

      - type: volume

        source: eventstore-volume-logs

        target: /var/log/eventstore

volumes:

  eventstore-volume-data:

  eventstore-volume-logs:

Thanks for all answers

That Docker confiuratino has

EVENTSTORE_INSECURE=true

That effectively disable all the authentication & TLS pipeline

To run the DB with TLS & Authentication enabled I suggest you look at this docker-compose file

It will create the necessary certificates ( signed by a private cert authority ) for the server to run with authentication & TLS enabled