Skip to content

Deploying ENSRainbow with Docker

NameHash Labs publishes the latest version of ENSRainbow as a docker container. Run the container with:

Terminal window
docker run -d -p 3223:3223 ghcr.io/namehash/ensnode/ensrainbow:latest

The service will be available at http://localhost:3223.

Docker Compose

To use ENSRainbow as part of a Docker Compose setup, use the following service definition:

ensrainbow:
container_name: ensrainbow
image: ghcr.io/namehash/ensnode/ensrainbow:latest
ports:
- "3223:3223"
restart: unless-stopped