citadel-apps/apps/bitfeed/app.yml

57 lines
1.8 KiB
YAML
Raw Normal View History

2022-01-28 07:58:09 +00:00
# SPDX-FileCopyrightText: 2021 Aaron Dewes <aaron.dewes@protonmail.com>
#
# SPDX-License-Identifier: AGPL-3.0-only
# yaml-language-server: $schema=../../app-standard-v1.json
version: 1
metadata:
category: Explorers
name: Bitfeed
2022-02-09 18:10:12 +00:00
version: 2.1.5
2022-01-28 07:58:09 +00:00
tagline: A live visualization of your node's mempool
2022-02-09 18:10:12 +00:00
description: A self-hosted version of Bitfeed - the open source mempool & block
visualizer available at https://bits.monospace.live. Watch as new
transactions drop into your node's mempool, before being packaged into newly
mined blocks. Monitor Bitcoin network activity, explore the composition of
the latest block, or simply enjoy a soothing Bitcoin screensaver.
2022-01-28 07:58:09 +00:00
developer: Mononaut
website: https://monospace.live
dependencies:
- bitcoind
repo: https://github.com/bitfeed-project/bitfeed
support: https://github.com/bitfeed-project/bitfeed/issues
gallery:
- 1.jpg
- 2.jpg
- 3.jpg
containers:
2022-01-28 08:02:16 +00:00
- name: main
2022-02-09 18:10:12 +00:00
image: ghcr.io/bitfeed-project/bitfeed-client:v2.1.5@sha256:36155dc32d423b07519515fda7cfa204e5abeb978a03cf4e27e993b10b585426
2022-01-28 07:58:09 +00:00
restart: on-failure
stop_grace_period: 1m
2022-01-28 08:14:09 +00:00
port: 80
2022-01-28 07:58:09 +00:00
depends_on:
2022-01-28 08:10:28 +00:00
- api
2022-01-28 07:58:09 +00:00
environment:
2022-01-28 08:10:28 +00:00
TARGET: citadel
2022-02-09 18:10:12 +00:00
BACKEND_HOST: $APP_BITFEED_API_IP
2022-01-28 08:14:09 +00:00
BACKEND_PORT: "3000"
2022-01-28 07:58:09 +00:00
- name: api
2022-02-09 19:13:45 +00:00
image: ghcr.io/bitfeed-project/bitfeed-server:v2.1.5@sha256:26c15a003ae3848bd1c3dd5d25279ef7c7bb6bbaeeeda615121e6e12754a7f88
2022-02-09 18:10:12 +00:00
user: 1000:1000
2022-01-28 07:58:09 +00:00
restart: on-failure
stop_grace_period: 1m
environment:
2022-01-28 08:14:09 +00:00
PORT: "3000"
2022-02-09 18:10:12 +00:00
BITCOIN_HOST: $BITCOIN_IP
BITCOIN_ZMQ_RAWTX_PORT: $BITCOIN_ZMQ_RAWTX_PORT
BITCOIN_ZMQ_RAWBLOCK_PORT: $BITCOIN_ZMQ_RAWBLOCK_PORT
BITCOIN_RPC_PORT: $BITCOIN_RPC_PORT
BITCOIN_RPC_USER: $BITCOIN_RPC_USER
BITCOIN_RPC_PASS: $BITCOIN_RPC_PASS
2022-01-28 07:58:09 +00:00
data:
- data:/app/data
2022-01-28 08:01:32 +00:00
permissions:
- bitcoind