citadel-apps/apps/bitfeed/app.yml

56 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-07 11:27:16 +00:00
version: 2.1.3
2022-01-28 07:58:09 +00:00
tagline: A live visualization of your node's mempool
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.
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-07 11:27:16 +00:00
image: ghcr.io/bitfeed-project/bitfeed-client:v2.1.3@sha256:861a70a049735717616cc5dfa480963a2adef31e937fdc34f6aa298e45eb3afc
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-01-28 07:58:09 +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-07 11:27:16 +00:00
image: ghcr.io/bitfeed-project/bitfeed-server:v2.1.3@sha256:67e0357152a4f7fca067a32ca737c287521be16038936ed67b60a50558935b73
2022-01-28 07:58:09 +00:00
user: "1000:1000"
restart: on-failure
stop_grace_period: 1m
environment:
2022-01-28 08:14:09 +00:00
PORT: "3000"
2022-01-28 07:58:09 +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"
data:
- data:/app/data
2022-01-28 08:01:32 +00:00
permissions:
- bitcoind