citadel-apps/apps/jam/app.yml

61 lines
1.9 KiB
YAML
Raw Normal View History

2022-04-07 16:25:31 +00:00
# SPDX-FileCopyrightText: 2021 Citadel and contributors
#
# SPDX-License-Identifier: AGPL-3.0-or-later
# yaml-language-server: $schema=../../app-standard-v3.yml
version: 3
2022-02-28 20:25:17 +00:00
metadata:
category: Wallets
name: JAM
2022-03-29 16:37:03 +00:00
version: 0.0.5
2022-03-01 09:34:24 +00:00
tagline: JoinMarket's awesome, man
2022-03-29 16:37:03 +00:00
description: JAM (JoinMarket's awesome, man) is a web-interface for JoinMarket
with focus on user-friendliness. It's time for top-notch privacy for your
2022-03-10 10:10:19 +00:00
bitcoin. Widespread use of JoinMarket improves bitcoin's fungibility and
privacy for all. The app provides sensible defaults and is easy to use for
beginners while still providing the features advanced users expect.
2022-03-01 09:34:24 +00:00
developer: JAM developers
2022-02-28 20:25:17 +00:00
website: https://github.com/joinmarket-webui/joinmarket-webui
dependencies:
2022-03-10 10:10:19 +00:00
- bitcoind
2022-02-28 20:25:17 +00:00
repo: https://github.com/joinmarket-webui/joinmarket-webui
support: https://t.me/JoinMarketWebUI
gallery:
2022-03-10 10:10:19 +00:00
- 1.jpg
- 2.jpg
- 3.jpg
- 4.jpg
- 5.jpg
2022-02-28 20:25:17 +00:00
defaultPassword: $APP_SEED
containers:
- name: joinmarket-webui
2022-03-29 16:37:03 +00:00
image: ghcr.io/joinmarket-webui/joinmarket-webui-standalone:v0.0.5-clientserver-v0.9.5
2022-02-28 20:25:17 +00:00
restart: on-failure
stop_grace_period: 1m
init: true
port: 80
data:
- data/joinmarket:/root/.joinmarket
environment:
ENSURE_WALLET: 1
RESTORE_DEFAULT_CONFIG: 1
2022-02-28 20:25:17 +00:00
APP_USER: citadel
2022-03-10 10:10:19 +00:00
APP_PASSWORD: ${APP_SEED}
2022-02-28 20:25:17 +00:00
jm_tor_control_host: $TOR_PROXY_IP
jm_tor_control_port: 29051
jm_onion_socks5_host: $TOR_PROXY_IP
jm_onion_socks5_port: $TOR_PROXY_PORT
jm_socks5_host: $TOR_PROXY_IP
jm_socks5_port: $TOR_PROXY_PORT
jm_rpc_host: $BITCOIN_IP
jm_rpc_port: $BITCOIN_RPC_PORT
jm_rpc_user: $BITCOIN_RPC_USER
2022-03-10 10:10:19 +00:00
jm_rpc_password: ${BITCOIN_RPC_PASS}
2022-02-28 20:25:17 +00:00
jm_rpc_wallet_file: jm_webui_default
jm_network: $BITCOIN_NETWORK
jm_max_cj_fee_abs: 300000
2022-03-10 10:10:19 +00:00
jm_max_cj_fee_rel: 0.0003
2022-04-07 16:25:31 +00:00