Client and server container images are automatically built for each tagged release and available from the Github Container Registry:
Use like
image: ghcr.io/bitfeed-project/bitfeed-client:v2.1.2image: ghcr.io/bitfeed-project/bitfeed-server:v2.1.2Alternatively, build your own containers from source using the provided Dockerfiles:
cd client
docker build . -t bitfeed/client:<version>cd server
docker build . -t bitfeed/server:<version>Check out docker-compose.yml for an example configuration, which exposes the front end client on port 3000, and connects to a locally running Bitcoin node.