citadel-apps/apps/bitfeed/app.yml

61 lines
1.9 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
2022-02-11 13:37:58 +00:00
# yaml-language-server: $schema=../../app-standard-v2.json
2022-01-28 07:58:09 +00:00
2022-02-11 13:37:58 +00:00
version: 2
2022-01-28 07:58:09 +00:00
metadata:
category: Explorers
name: Bitfeed
2022-02-21 14:09:54 +00:00
version: 2.2.0
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
2022-02-21 14:09:54 +00:00
updateContainer:
2022-02-11 13:37:58 +00:00
- main
- api
2022-01-28 07:58:09 +00:00
containers:
2022-01-28 08:02:16 +00:00
- name: main
2022-02-21 14:09:54 +00:00
image: ghcr.io/bitfeed-project/bitfeed-client:v2.2.0@sha256:050c4e7c7744a856fbd49758db046c4dfead40d39a0719f35b3918e9f778b074
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-27 10:06:47 +00:00
image: ghcr.io/bitfeed-project/bitfeed-server:v2.2.0@sha256:b04d9ef4f2c56bd25cd1cb6b33261a8716d6710d71c7e3c0388d12f2cc236e11
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
2022-02-28 13:58:08 +00:00
BITCOIN_ZMQ_SEQUENCE_PORT: $BITCOIN_ZMQ_SEQUENCE_PORT
2022-02-09 18:10:12 +00:00
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