Skip to content

Quickstart

The easiest way to run ENSAdmin is via Docker container.

ENSAdmin is deployed as a Single Page React Application served by nginx on port 4173.

Terminal window
docker run \
-d \
-p 4173:4173 \
ghcr.io/namehash/ensnode/ensadmin:latest

To configure the server connection library at build time:

Terminal window
docker build -f apps/ensadmin/Dockerfile \
--build-arg NEXT_PUBLIC_SERVER_CONNECTION_LIBRARY=http://localhost:42069 \
-t ensadmin .
docker run -d -p 4173:4173 ensadmin

The 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.