Quickstart
This documentation is under active development.
The easiest way to run ENSAdmin is via Docker container.
Running with Docker
Section titled “Running with Docker”ENSAdmin is deployed as a Single Page React Application served by nginx on port 4173.
Using pre-built image
Section titled “Using pre-built image”docker run \ -d \ -p 4173:4173 \ ghcr.io/namehash/ensnode/ensadmin:latestRunning with custom ENSNode URLs
Section titled “Running with custom ENSNode URLs”To configure the server connection library:
docker run -d \ -p 4173:4173 \ -e NEXT_PUBLIC_SERVER_CONNECTION_LIBRARY=http://localhost:42069 \ ghcr.io/namehash/ensnode/ensadmin:latestThe NEXT_PUBLIC_SERVER_CONNECTION_LIBRARY environment variable accepts a comma-separated list of ENSNode URLs that will be offered as connection options in the ENSAdmin interface.