https://github.com/bitquery/explorer
Open source unified blockchain explorer
https://github.com/bitquery/explorer
analytics bitcoin blockchain ethereum explorer
Last synced: about 2 months ago
JSON representation
Open source unified blockchain explorer
- Host: GitHub
- URL: https://github.com/bitquery/explorer
- Owner: bitquery
- License: mit
- Created: 2020-02-07T12:57:46.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2025-11-03T06:42:13.000Z (5 months ago)
- Last Synced: 2026-01-23T09:10:26.062Z (3 months ago)
- Topics: analytics, bitcoin, blockchain, ethereum, explorer
- Language: HTML
- Size: 16.3 MB
- Stars: 151
- Watchers: 8
- Forks: 71
- Open Issues: 7
-
Metadata Files:
- Readme: README-DOCKER-BUILD.md
- License: LICENSE
Awesome Lists containing this project
README
# Build
```
docker build \
-t nexus.bitq.dev/repository/bitquery/explorer:`git rev-parse --short HEAD` .
```
# Make an alias latest
```
docker image tag \
nexus.bitq.dev/repository/bitquery/explorer:`git rev-parse --short HEAD` \
nexus.bitq.dev/repository/bitquery/explorer:latest
```
# Login to registry
```
apt install gnupg2 pass
docker login -u https://nexus.bitq.dev
```
# Push image tags
```
docker image push nexus.bitq.dev/repository/bitquery/explorer:`git rev-parse --short HEAD`
docker image push nexus.bitq.dev/repository/bitquery/explorer:latest
```
# Run container
```
export IMAGE_TAG="latest"
docker run -d \
--name staging-explorer \
--restart unless-stopped \
--dns 10.0.0.254 \
--dns-search api-cluster.local \
--dns-opt ndots:2 \
-p 127.0.0.1:3000:3000 \
-e SECRET_KEY_BASE="" \
-e EXPLORER_API_KEY="" \
nexus.bitq.dev/repository/bitquery/explorer:${IMAGE_TAG}
```