- Where to file issues: https://github.com/skycoin/skycoin-explorer/issues
- Maintained by: The Skycoin community
- Supported architectures: (more info)
amd64,arm32v6,arm64v8 - Image updates:
[official-images PRs with label
library/alpine](https://github.com/docker-library/official-images/pulls?q=label%3Alibrary%2Falpine official-images repo'slibrary/alpinefile (history)
Skycoin explorer is a tool to interact with Skycoin's ecosystem.
You can check blocks, transactions and their states.
It is posible to build an image from the github repository or just pull the official one from Docker Hub
In order to build it from sources, execute the following commands
$ git clone https://github.com/simelo/skycoin-explorer ${HOME}/workdir/skycoin-explorer
$ cd ${HOME}/workdir/skycoin-explorer
$ docker build -t skycoin/skycoin-explorer:[tag] -f docker/images/Dockerfile .Or use the official image
$ docker pull skycoin/skycoin-explorer:[tag]Now launch the container
$ docker run -d --name explorer-node -p 8001:8001 skycoin/skycoin-explorer:[tag]Stopping the container
$ docker stop explorer-nodeThe SKYCOIN_ADDR and the EXPLORER_HOST environment variables can be passed in
to the running container to modify the default behavior, the first one sets the IP of the skycoin node and the second one sets the IP of the interface where the node is listening
$ docker run -d --name explorer-node -p 8001:8001 -e SKYCOIN_ADDR="http://192.168.1.1:6420" skycoin/skycoin-explorer:[tag]To access the explorer visit http://localhost:8001
This image has built-in tests (Protractor), this ones will be executed on a container provisioned and started on Docker Cloud. The containers that will run for the test are defined in docker-compose.test.yml, this file will be executed every time a pull request or a commit is submited upstream.
The image has two hooks, one that is executed at the moment the image is built and adds to its name the ARM version and the other that is executed when it is about to be pushed onto Docker Hub. The later ensures images (previously b uilt) for all architectures are published for download in Docker Hub.