Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Automate docker build and publish. #62

Open
Kukks opened this issue Sep 16, 2018 · 3 comments · May be fixed by #430
Open

Automate docker build and publish. #62

Kukks opened this issue Sep 16, 2018 · 3 comments · May be fixed by #430

Comments

@Kukks
Copy link

Kukks commented Sep 16, 2018

Currently, there is one remotely close published docker image of this repo and it seems to be outdated. Seeing as you have a dockerfile in the project already, I'd recommend you configure an automated build on Dockerhub. See https://docs.docker.com/docker-hub/github/

@loganmarchione
Copy link

loganmarchione commented Jan 19, 2021

@janoside I was also wondering about this. I would love to run this in Docker (pulled from Docker Hub) vs installing manually with NPM.

Also, there are a bunch of no-name builds of this out there, would be nice to have an officially blessed container.

@loganmarchione
Copy link

FYI if anyone finds this.

My main issue was having to clone the repo first. However, Docker Compose allows you to build from a remote URL without cloning the repo first.

version: '3'
services:
  btc-rpc-explorer:
    container_name: btc-rpc-explorer
    restart: unless-stopped
    environment:
      - BTCEXP_HOST=0.0.0.0
    ports:
      - '3002:3002'
    build:
      context: https://github.com/janoside/btc-rpc-explorer.git
      dockerfile: Dockerfile

@jontyms jontyms linked a pull request Mar 25, 2022 that will close this issue
@st3b1t
Copy link
Contributor

st3b1t commented Jun 5, 2023

about this I just send a PR to include a working docker-compose.yml file #549

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

5 participants
@Kukks @loganmarchione @st3b1t and others