Page MenuHomePhabricator

[explorer] Add a Dockerfile for running the explorer
ClosedPublic

Authored by Fabien on Jan 12 2023, 22:08.

Details

Reviewers
johnkuney
Group Reviewers
Restricted Project
Commits
rABC0c6df4f04134: [explorer] Add a Dockerfile for running the explorer
Summary

This will make it easy to do automated deployment.

Test Plan
cd web/explorer
docker build -t explorer .
docker run -p 3035:3035 explorer

Check the explorer runs on http://localhost:3035
To stop the explorer, use docker stop <container id>

Diff Detail

Repository
rABC Bitcoin ABC
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

Fabien requested review of this revision.Jan 12 2023, 22:08

I'm getting an error on docker build -t explorer

"docker build" requires exactly 1 argument.

I'm getting an error on docker build -t explorer

"docker build" requires exactly 1 argument.

I fixed the test plan

That worked, looks good!

This revision is now accepted and ready to land.Jan 13 2023, 14:13