Merge remote-tracking branch 'upstream/master'

This commit is contained in:
Mike Heier 2023-02-17 20:29:11 -05:00
commit 16793cbd9f
38 changed files with 377 additions and 98 deletions

View File

View File

View File

@ -0,0 +1,47 @@
version: "3.7"
services:
app_proxy:
environment:
APP_HOST: ghostfolio_server_1
APP_PORT: 3334
server:
image: ghostfolio/ghostfolio:1.231.0@sha256:09d957bf25f48093ed6a0b0ac661f6b19337ac091d2b69dc2fb2985a0d51f025
restart: on-failure
environment:
NODE_ENV: production
HOST: 0.0.0.0
PORT: 3334
ACCESS_TOKEN_SALT: $APP_GHOSTFOLIO_ACCESS_TOKEN_SALT
BASE_CURRENCY: USD
DATABASE_URL: postgresql://${APP_GHOSTFOLIO_DB_USERNAME}:${APP_GHOSTFOLIO_DB_PASSWORD}@ghostfolio_postgres_1:5432/${APP_GHOSTFOLIO_DB_DATABASE_NAME}?sslmode=prefer
JWT_SECRET_KEY: ${APP_SEED}
POSTGRES_DB: ${APP_GHOSTFOLIO_DB_DATABASE_NAME}
POSTGRES_USER: ${APP_GHOSTFOLIO_DB_USERNAME}
POSTGRES_PASSWORD: ${APP_GHOSTFOLIO_DB_PASSWORD}
REDIS_HOST: ghostfolio_redis_1
REDIS_PASSWORD: ${APP_GHOSTFOLIO_REDIS_PASSWORD}
REDIS_PORT: 6379
postgres:
image: postgres:14-bullseye@sha256:c2a30d08a6f9e6c365595fd086c9e0436064c52425f15f72379ecf0807bac518
restart: on-failure
stop_grace_period: 1m
user: "1000:1000"
environment:
POSTGRES_USER: ${APP_GHOSTFOLIO_DB_USERNAME}
POSTGRES_PASSWORD: ${APP_GHOSTFOLIO_DB_PASSWORD}
POSTGRES_DB: ${APP_GHOSTFOLIO_DB_DATABASE_NAME}
PGDATA: /var/lib/postgresql/data
volumes:
- ${APP_DATA_DIR}/data/postgres:/var/lib/postgresql/data
redis:
image: redis:6.2-bullseye@sha256:5cdb2ac6f780e1d250787f4a887c1ed1166e3389757189ea913059409acc6f7c
restart: on-failure
user: "1000:1000"
command: >
--requirepass ${APP_GHOSTFOLIO_REDIS_PASSWORD}
volumes:
- ${APP_DATA_DIR}/data/redis:/data

5
ghostfolio/exports.sh Normal file
View File

@ -0,0 +1,5 @@
export APP_GHOSTFOLIO_ACCESS_TOKEN_SALT=$(derive_entropy "env-${app_entropy_identifier}-APP_ACCESS_TOKEN_SALT" | head -c32)
export APP_GHOSTFOLIO_DB_DATABASE_NAME="ghostfolio"
export APP_GHOSTFOLIO_DB_USERNAME="ghostfolio"
export APP_GHOSTFOLIO_DB_PASSWORD="moneyprintergobrrr"
export APP_GHOSTFOLIO_REDIS_PASSWORD="moneyprintergobrrr"

34
ghostfolio/umbrel-app.yml Normal file
View File

@ -0,0 +1,34 @@
manifestVersion: 1
id: ghostfolio
category: Finance
name: Ghostfolio
version: "1.231.0"
tagline: Manage your wealth like a boss
description: >-
Ghostfolio is a privacy-first, open source dashboard for your personal finances.
Break down your asset allocation, know your net worth and make solid, data-driven
investment decisions.
Protect your assets. Refine your personal investment strategy.
Ghostfolio empowers busy people to keep track of stocks, ETFs or cryptocurrencies
without being tracked.
developer: Ghostfolio
website: https://ghostfol.io/
dependencies: []
repo: https://github.com/ghostfolio/ghostfolio
support: https://github.com/ghostfolio/ghostfolio/discussions
port: 3334
gallery:
- 1.jpg
- 2.jpg
- 3.jpg
path: ""
deterministicPassword: false
torOnly: false
submitter: BeauAgst
submission: https://github.com/getumbrel/umbrel-apps/pull/396

0
heimdall/config/.gitkeep Normal file
View File

View File

@ -0,0 +1,17 @@
version: "3.7"
services:
app_proxy:
environment:
APP_HOST: heimdall_server_1
APP_PORT: 80
PROXY_AUTH_ADD: "false"
server:
image: lscr.io/linuxserver/heimdall:2.5.5@sha256:656efe8ee113ebcf8214d53e69cc25645ec11b020dec63e619bd379361cee58e
volumes:
- ${APP_DATA_DIR}/config:/config
environment:
- PUID=1000
- PGID=1000
restart: on-failure

37
heimdall/umbrel-app.yml Normal file
View File

@ -0,0 +1,37 @@
manifestVersion: 1
id: heimdall
name: Heimdall
tagline: Heimdall organises your most used web sites and web applications in a simple way
category: Productivity
version: "2.5.5"
port: 7392
description: >-
As the name suggests Heimdall Application Dashboard is a dashboard for all your web applications. It doesn't need to be limited to applications though, you can add links to anything you like.
Heimdall is an elegant solution to organise all your web applications. Its dedicated to this purpose so you wont lose your links in a sea of bookmarks.
Why not use it as your browser start page? It even has the ability to include a search bar using either Google, Bing or DuckDuckGo.
You can use the app to link to any site or application, but Foundation apps will auto fill in the icon for the app and supply a default color for the tile. In addition Enhanced apps allow you provide details to an apps API, allowing you to view live stats directly on the dashboad. For example, the NZBGet and Sabnzbd Enhanced apps will display the queue size and download speed while something is downloading.
Supported applications are recognized by the title of the application as entered in the title field when adding an application. For example, to add a link to pfSense, begin by typing "p" in the title field and then select "pfSense" from the list of supported applications.
developer: LinuxServer.io
website: https://heimdall.site
repo: https://github.com/linuxserver/Heimdall
support: https://github.com/linuxserver/Heimdall/issues
gallery:
- 1.jpg
- 2.jpg
- 3.jpg
releaseNotes: ""
dependencies: []
path: ""
torOnly: false
defaultUsername: ""
defaultPassword: ""
submitter: AxelPilop
submission: https://github.com/getumbrel/umbrel-apps/pull/390

View File

@ -7,7 +7,7 @@ services:
APP_PORT: 80 APP_PORT: 80
web: web:
image: ghcr.io/joinmarket-webui/jam-standalone:v0.1.4-clientserver-v0.9.8@sha256:0c7ea1a7d6d9eb8256c5f76753e7425b405ede58f597b04059dd804def60914a image: ghcr.io/joinmarket-webui/jam-standalone:v0.1.5-clientserver-v0.9.9@sha256:c8bf944000eb8b3b5666ac037440a4904f9c3baa8665c52081a9e5092d6bd275
restart: on-failure restart: on-failure
stop_grace_period: 1m stop_grace_period: 1m
init: true init: true

View File

@ -2,7 +2,7 @@ manifestVersion: 1.1
id: jam id: jam
category: Finance category: Finance
name: Jam name: Jam
version: "0.1.4" version: "0.1.5"
tagline: Your sats. Your privacy. Your profit. tagline: Your sats. Your privacy. Your profit.
description: >- description: >-
Jam is a user-interface for JoinMarket with focus on Jam is a user-interface for JoinMarket with focus on
@ -13,12 +13,18 @@ description: >-
The app provides sensible defaults and is easy to use for beginners while still providing the features advanced users expect. The app provides sensible defaults and is easy to use for beginners while still providing the features advanced users expect.
releaseNotes: >- releaseNotes: >-
- Speed up initial page load - Fees: Allow min tx fee of 1sat/vbyte
- Ability to spend (expired) fidelity bond - Fees: Allow input for relative fee limit of 0.0001%
- Improved settings page with subsections - Bonds: Correctly display success screen after unlocking fb
developer: JoinMarket WebUI Organisation
- Sweep: Display success screen after a scheduler run completes
- Coin Control: Quick freeze/unfreeze utxos
- Coin Control: Show jar total amount in detail view
developer: JoinMarket WebUI Org.
website: https://jamapp.org website: https://jamapp.org
dependencies: dependencies:
- bitcoin - bitcoin
@ -33,5 +39,5 @@ path: ""
defaultUsername: umbrel defaultUsername: umbrel
defaultPassword: "" defaultPassword: ""
deterministicPassword: true deterministicPassword: true
submitter: JoinMarket WebUI Organisation submitter: JoinMarket WebUI Org.
submission: https://github.com/getumbrel/umbrel/pull/1216 submission: https://github.com/getumbrel/umbrel/pull/1216

View File

@ -7,7 +7,7 @@ services:
APP_PORT: 8055 APP_PORT: 8055
web: web:
image: niteshbalusu/lndboss:v2.16.0@sha256:5bd633f932484fbfd8737a9827f32b4c5d70d1bd04b49c11af2af5ba62e205b7 image: niteshbalusu/lndboss:v2.17.1@sha256:6147ffe8870ee23784af83afe33b142fbe310166dff2042d386f30747b9d3d2f
restart: on-failure restart: on-failure
stop_grace_period: 1m stop_grace_period: 1m
volumes: volumes:

View File

@ -2,7 +2,7 @@ manifestVersion: 1
id: lndboss id: lndboss
category: Lightning Node Management category: Lightning Node Management
name: LndBoss name: LndBoss
version: "2.16.0" version: "2.17.1"
tagline: A GUI for BalanceOfSatoshis tagline: A GUI for BalanceOfSatoshis
description: LndBoss is a GUI for BalanceOfSatoshis. description: LndBoss is a GUI for BalanceOfSatoshis.
It is a tool that makes it easy to run your favorite It is a tool that makes it easy to run your favorite
@ -25,6 +25,15 @@ path: ""
defaultUsername: "" defaultUsername: ""
defaultPassword: "" defaultPassword: ""
releaseNotes: > releaseNotes: >
- 2.17.1 (2023-02-14)
Fixed condition for auto-fees when outbound/capacity ratio is zero.
- 2.17.0 (2023-01-31)
Added avoid-high-fee-routes to probe command.
Added avoid high-fee-routes to pay command.
Added avoid high-fee-routes to send command.
Added support for calling acceptsChannelOpen, connectPeer, findKey and getNetwork to call command.
- 2.16.0 (2023-01-13) - 2.16.0 (2023-01-13)
Added bos encrypt command. Added bos encrypt command.
Added bos decrypt command. Added bos decrypt command.
@ -39,11 +48,5 @@ releaseNotes: >
- 2.14.0 (2022-12-19) - 2.14.0 (2022-12-19)
Added bos clean-failed-payments command. Added bos clean-failed-payments command.
- 2.13.0 (2022-12-07)
Added bos utxos command.
Added date flag to accounting command for precision.
- 2.12.0 (2022-11-28)
Added allow flag to create-channel-group command to determine order and allow list for joining group.
submitter: Nitesh Balusu submitter: Nitesh Balusu
submission: https://github.com/getumbrel/umbrel-apps/pull/65 submission: https://github.com/getumbrel/umbrel-apps/pull/65

View File

@ -7,7 +7,7 @@ services:
APP_PORT: $APP_LNDG_PORT APP_PORT: $APP_LNDG_PORT
web: web:
image: ghcr.io/cryptosharks131/lndg:v1.5.0@sha256:5adb0bace9086468542fe8ecf7c971fc47c94b0da6b491b0eb856f3d854c86ba image: ghcr.io/cryptosharks131/lndg:v1.5.1@sha256:29e8358e9e8942fb7c953b0ce3e358cbcbcfc42d16a2237e7d260ceb5807521f
restart: on-failure restart: on-failure
stop_grace_period: 1m stop_grace_period: 1m
init: true init: true

View File

@ -2,7 +2,7 @@ manifestVersion: 1
id: lndg id: lndg
category: Lightning Node Management category: Lightning Node Management
name: LNDg name: LNDg
version: "1.5.0" version: "1.5.1"
tagline: Analyze and automate your Lightning node management tagline: Analyze and automate your Lightning node management
description: LNDg is your command center for running a profitable and efficient description: LNDg is your command center for running a profitable and efficient
routing node. From quickly viewing your node's health, automated rebalancing, routing node. From quickly viewing your node's health, automated rebalancing,
@ -32,6 +32,8 @@ releaseNotes: >-
- The channel policy update form has been removed from the bottom of the home dashboard - The channel policy update form has been removed from the bottom of the home dashboard
- And more... Full details can be found here: https://github.com/cryptosharks131/lndg/releases/tag/v1.5.0 - Additional fixes included in v1.5.1
- And more... Full details can be found here: https://github.com/cryptosharks131/lndg/releases/tag/v1.5.1
submitter: cryptosharks131 submitter: cryptosharks131
submission: https://github.com/getumbrel/umbrel/pull/1189 submission: https://github.com/getumbrel/umbrel/pull/1189

View File

@ -0,0 +1,13 @@
version: "3.7"
services:
app_proxy:
environment:
APP_HOST: passky-client_web_1
APP_PORT: 80
PROXY_AUTH_ADD: "false"
web:
image: rabbitcompany/passky-client:8.1.1@sha256:9c144ceb22920c60dc659c8635f48a92be4bffdb7dc768aba0d26a9a42c3005d
restart: on-failure
stop_grace_period: 1m

View File

@ -0,0 +1,34 @@
manifestVersion: 1
id: passky-client
category: Password Managers
name: Passky Client
version: "8.1.1"
tagline: Simple, modern, lightweight, open source and secure password manager
description: >-
With Passky, you can easily and securely store all of your passwords in one place.
Say goodbye to the hassle of remembering multiple complex passwords - with Passky, all you need is one master password to access all of your accounts.
Passky uses advanced encryption technology to keep your passwords safe and secure, so you can have peace of mind knowing that your sensitive information is protected.
Plus, Passky is easy to use and available on all of your devices, so you can access your passwords wherever you go. Try Passky today and take control of your online security!
developer: Rabbit Company LLC
website: https://passky.org
dependencies: []
repo: https://github.com/Rabbit-Company/Passky-Website
support: https://passky.org/contact
port: 5052
gallery:
- 1.jpg
- 2.jpg
- 3.jpg
- 4.jpg
- 5.jpg
path: ""
defaultUsername: ""
defaultPassword: ""
submitter: Rabbit Company LLC
submission: https://github.com/getumbrel/umbrel-apps/pull/385

View File

View File

@ -0,0 +1,63 @@
version: "3.7"
services:
app_proxy:
environment:
APP_HOST: passky-server_server_1
APP_PORT: 80
PROXY_AUTH_ADD: "false"
server:
image: rabbitcompany/passky-server:8.1.2@sha256:abc356e4f998c5e7ec23c040decd928d953fa56bc08d19e5353e096ef790cd32
restart: on-failure
stop_grace_period: 1m
environment:
SERVER_LOCATION: "US"
SERVER_CORES: 1
ADMIN_USERNAME: "admin"
ADMIN_PASSWORD: "${APP_PASSWORD}"
CF_TURNSTILE_SITE_KEY: "1x00000000000000000000AA"
CF_TURNSTILE_SECRET_KEY: "1x0000000000000000000000000000000AA"
DATABASE_ENGINE: sqlite
DATABASE_FILE: passky
MYSQL_HOST: ""
MYSQL_PORT: 3306
MYSQL_DATABASE: "passky"
MYSQL_USER: "passky"
MYSQL_PASSWORD: ""
MYSQL_SSL: "false"
MYSQL_SSL_CA: "/etc/ssl/certs/ca-certificates.crt"
MYSQL_CACHE_MODE: 0
REDIS_HOST: "127.0.0.1"
REDIS_PORT: 6379
REDIS_PASSWORD: ""
REDIS_LOCAL_HOST: "127.0.0.1"
REDIS_LOCAL_PORT: 6379
REDIS_LOCAL_PASSWORD: ""
MAIL_ENABLED: "false"
ACCOUNT_MAX: 100
ACCOUNT_MAX_PASSWORDS: 1000
ACCOUNT_PREMIUM: -1
YUBI_CLOUD: "https://api.yubico.com/wsapi/2.0/verify"
YUBI_ID: 67857
LIMITER_ENABLED: "true"
LIMITER_GET_INFO: -1
LIMITER_GET_STATS: -1
LIMITER_GET_TOKEN: 3
LIMITER_GET_PASSWORDS: 2
LIMITER_SAVE_PASSWORD: 2
LIMITER_EDIT_PASSWORD: 2
LIMITER_DELETE_PASSWORD: 2
LIMITER_DELETE_PASSWORDS: 10
LIMITER_CREATE_ACCOUNT: 10
LIMITER_DELETE_ACCOUNT: 10
LIMITER_IMPORT_PASSWORDS: 10
LIMITER_FORGOT_USERNAME: 60
LIMITER_ENABLE_2FA: 10
LIMITER_DISABLE_2FA: 10
LIMITER_ADD_YUBIKEY: 10
LIMITER_REMOVE_YUBIKEY: 10
LIMITER_UPGRADE_ACCOUNT: 10
LIMITER_GET_REPORT: -1
volumes:
- ${APP_DATA_DIR}/data/passky:/var/www/html/databases

View File

@ -0,0 +1,32 @@
manifestVersion: 1
id: passky-server
category: Password Managers
name: Passky Server
version: "8.1.2"
tagline: Simple, modern, lightweight, open source and secure password manager
description: >-
With Passky, you can easily and securely store all of your passwords in one place.
Say goodbye to the hassle of remembering multiple complex passwords - with Passky, all you need is one master password to access all of your accounts.
Passky uses advanced encryption technology to keep your passwords safe and secure, so you can have peace of mind knowing that your sensitive information is protected.
Plus, Passky is easy to use and available on all of your devices, so you can access your passwords wherever you go. Try Passky today and take control of your online security!
developer: Rabbit Company LLC
website: https://passky.org
dependencies: []
repo: https://github.com/Rabbit-Company/Passky-Server
support: https://passky.org/contact
port: 5050
gallery:
- 1.jpg
- 2.jpg
- 3.jpg
path: ""
defaultUsername: admin
deterministicPassword: true
submitter: Rabbit Company LLC
submission: https://github.com/getumbrel/umbrel-apps/pull/384

View File

@ -8,7 +8,7 @@ services:
PROXY_AUTH_ADD: "false" PROXY_AUTH_ADD: "false"
server: server:
image: pihole/pihole:2022.12@sha256:773ed874ca7244b04da6470eb1e596c5c8960afe14fda3162e29ab4d79c3d239 image: pihole/pihole:2023.02.0@sha256:65047a58be709cbfee9586ed224e7e1fd49233be4074e1659baee335105093f2
# Pi-hole doesn't currently support running as non-root # Pi-hole doesn't currently support running as non-root
# https://github.com/pi-hole/docker-pi-hole/issues/685 # https://github.com/pi-hole/docker-pi-hole/issues/685
# user: "1000:1000" # user: "1000:1000"

View File

@ -2,7 +2,7 @@ manifestVersion: 1.1
id: pi-hole id: pi-hole
category: Networking category: Networking
name: Pi-hole name: Pi-hole
version: "5.18" version: "5.18.4"
tagline: Block ads on your entire network tagline: Block ads on your entire network
description: >- description: >-
Instead of browser plugins or other software on each computer, Instead of browser plugins or other software on each computer,
@ -31,16 +31,17 @@ defaultUsername: ""
deterministicPassword: true deterministicPassword: true
torOnly: false torOnly: false
releaseNotes: >- releaseNotes: >-
Various internal improvements: - FTL v5.21
- FTL v5.20 - Core v5.14.4
- Fix doughnutTooltip if total percentage of shown slices is less than 0.1%. - db_queries.php: use the same color scheme from Dashboard by @rdwebdesign in pi-hole/AdminLTE#2517
- Require auth for more API endpoints. - Fix multiple restarts while importing with Teleporter by @yubiuser in pi-hole/AdminLTE#2519
- Increase small-box footer contrast ratio. - Use the setupVars.conf option TEMPERATUREUNIT, plus slight rearrangement of settings page by @rdwebdesign in pi-hole/AdminLTE#2516
- A fix for the following advisory: GHSA-6qh8-6rrj-7497
Full changelog available here: https://github.com/pi-hole/AdminLTE/compare/v5.18...v5.18.4
submitter: Umbrel submitter: Umbrel
submission: https://github.com/getumbrel/umbrel/commit/9ca55a25e043dcd50d5cb92c6ec756d368bb4794 submission: https://github.com/getumbrel/umbrel/commit/9ca55a25e043dcd50d5cb92c6ec756d368bb4794

View File

@ -7,7 +7,7 @@ services:
APP_PORT: 80 APP_PORT: 80
web: web:
image: rotki/rotki:v1.26.3@sha256:d7ec69fbaf1866268792dec0ffe3dc54537a99b8d9a31037810f1b6c61c9480d image: rotki/rotki:v1.27.0@sha256:f1c814e3636f4a48544aca9e500ff0e54cf18e9b0e5a2eb23c309c376efdf3fb
restart: on-failure restart: on-failure
stop_grace_period: 1m stop_grace_period: 1m
init: true init: true

View File

@ -2,7 +2,7 @@ manifestVersion: 1
id: rotki id: rotki
category: Finance category: Finance
name: rotki name: rotki
version: "1.26.3" version: "1.27.0"
tagline: Portfolio tracking, analytics, accounting and tax reporting tagline: Portfolio tracking, analytics, accounting and tax reporting
description: >- description: >-
rotki is an open source portfolio tracking, analytics, accounting and tax reporting tool that protects your privacy. rotki is an open source portfolio tracking, analytics, accounting and tax reporting tool that protects your privacy.
@ -25,14 +25,19 @@ repo: https://github.com/rotki/rotki
support: https://github.com/rotki/rotki/issues support: https://github.com/rotki/rotki/issues
port: 8084 port: 8084
releaseNotes: >- releaseNotes: >-
- Fixes issues where balance is not fully refreshed after detect tokens button pressed. Rotki v1.27.0 is the biggest release rotki has ever made. It contains a lots of new features, improvements and bug fixes we made in the past 3 months! The biggest feature coming here is proper multi-evm chain support starting with Optimism and the introduction of Optimism support for transactions history, balances etc.
Important Notes:
- Connecting to substrate nodes will no longer timeout prematurely for systems with slow connections. - When opening the release for the first time you will see all your ethereum accounts that have had activity in either optimism or avalanche being also added for these chains. (The only exception to this is if you pull from premium server to a new machine and the old version you sync from has not yet been upgraded to 1.27.0)
- Transfers between tracked accounts will now have a correct label in the UI. - If you have any optimism address you will be asked to create and add a free API key for optimistic etherscan: https://optimistic.etherscan.io/register
- All EVM transaction events (except for the ones you customized) will need to be redecoded since this upgrade made many changes and improvements to the decoders. No action on the user side needed for this, but you may notice longer loading time when you visit the EVM transactions for the first time.
Full changelog can be found here: https://github.com/rotki/rotki/releases/tag/v1.26.3 Full changelog can be found here: https://github.com/rotki/rotki/releases/tag/v1.27.0
gallery: gallery:
- 1.jpg - 1.jpg
- 2.jpg - 2.jpg

View File

@ -2,7 +2,7 @@
# Delay booting Samourai Server until the Dojo and Whirlpool Tor Hidden Services are ready # Delay booting Samourai Server until the Dojo and Whirlpool Tor Hidden Services are ready
HIDDEN_SERVICE_FILE="${TOR_DATA_DIR}/app-${APP_ID}-whirlpool/hostname" HIDDEN_SERVICE_FILE="${TOR_DATA_DIR}/app-${APP_ID}-dojo/hostname"
if [[ -f "${HIDDEN_SERVICE_FILE}" ]]; then if [[ -f "${HIDDEN_SERVICE_FILE}" ]]; then
exit exit

View File

@ -1,3 +1,7 @@
# samourai-server whirlpool Hidden Service # samourai-server whirlpool Hidden Service
HiddenServiceDir /data/app-$APP_ID-whirlpool HiddenServiceDir /data/app-$APP_ID-whirlpool
HiddenServicePort 80 samourai-server_whirlpool_1:8898 HiddenServicePort 80 samourai-server_whirlpool_1:8898
# samourai-server dojo Hidden Service
HiddenServiceDir /data/app-$APP_ID-dojo
HiddenServicePort 80 samourai-server_nginx_1:80

View File

@ -2,7 +2,7 @@ manifestVersion: 1.1
id: samourai-server id: samourai-server
category: Wallet Servers category: Wallet Servers
name: Samourai Server name: Samourai Server
version: "1.16.1-hotfix-1" version: "1.16.1-hotfix-2"
tagline: Your private backing server for Samourai Wallet tagline: Your private backing server for Samourai Wallet
description: >- description: >-
Samourai Server is an exclusive Umbrel app that runs Samourai Dojo Samourai Server is an exclusive Umbrel app that runs Samourai Dojo
@ -32,6 +32,6 @@ path: ""
defaultUsername: "" defaultUsername: ""
defaultPassword: "" defaultPassword: ""
releaseNotes: >- releaseNotes: >-
Change web UI port from 3005 to 3021 Fix remote access via Tor
submitter: Umbrel submitter: Umbrel
submission: https://github.com/getumbrel/umbrel/pull/461 submission: https://github.com/getumbrel/umbrel/pull/461

View File

@ -8,7 +8,7 @@ services:
PROXY_AUTH_ADD: "false" PROXY_AUTH_ADD: "false"
server: server:
image: sphinxlightning/sphinx-relay:v2.2.12@sha256:96778f56fc3b2c7703ec6d0d3162a9fe4c82b0d57179819c90efc479cdc1620a image: sphinxlightning/sphinx-relay:v2.2.13@sha256:42453b6a7fff467fc93e5adc761452d8b0a44aa8fa7bc7284896dde387ef148d
init: true init: true
restart: on-failure restart: on-failure
stop_grace_period: 1m stop_grace_period: 1m

View File

@ -2,7 +2,7 @@ manifestVersion: 1.1
id: sphinx-relay id: sphinx-relay
category: Social category: Social
name: Sphinx Relay name: Sphinx Relay
version: "2.2.12" version: "2.2.13"
tagline: Chat and pay over the Lightning Network tagline: Chat and pay over the Lightning Network
description: >- description: >-
Sphinx Relay turns your Lightning node into a personal Sphinx Relay turns your Lightning node into a personal
@ -32,10 +32,16 @@ defaultPassword: ""
submitter: Stakwork submitter: Stakwork
submission: https://github.com/getumbrel/umbrel/pull/341 submission: https://github.com/getumbrel/umbrel/pull/341
releaseNotes: >- releaseNotes: >-
- Fix person uuid forwarded in tribes - Fix: made the bot message seen as false
- Action history - Fix: lower limit amount for /feeds
- Tribe leaderboard stuff - Fix: removed deprecated auth code that was not used in codebase
- DB config from env - Fix: we updated to a new workflow id
- Fix: call recoding length
- And much much more...
Full changelog can be found here: https://github.com/stakwork/sphinx-relay/releases/tag/v2.2.13

View File

@ -7,7 +7,7 @@ services:
APP_PORT: 8384 APP_PORT: 8384
server: server:
image: syncthing/syncthing:1.23.0@sha256:57699adea5bae30edd2c4f83d5c311969e3255c3d23e7de747638dffbc3a8bc2 image: syncthing/syncthing:1.23.1@sha256:09dda4902e5139cf557db00235aad707ef2306d23f709121079360e4c30b1690
restart: on-failure restart: on-failure
stop_grace_period: 1m stop_grace_period: 1m
hostname: umbrel hostname: umbrel

View File

@ -2,7 +2,7 @@ manifestVersion: 1
id: syncthing id: syncthing
category: Files category: Files
name: Syncthing name: Syncthing
version: "1.23.0" version: "1.23.1"
tagline: Peer-to-peer file synchronization between your devices tagline: Peer-to-peer file synchronization between your devices
description: >- description: >-
Syncthing is a peer-to-peer continuous file synchronization Syncthing is a peer-to-peer continuous file synchronization
@ -28,10 +28,6 @@ defaultPassword: ""
releaseNotes: >- releaseNotes: >-
Bugfixes: Bugfixes:
- Incorrect rescan interval on auto accepted encrypted folder - "accept: function not implemented" after upgrading to syncthing v1.20.1
- Perhaps the list of devices contains empty elements
- Properly indicate whether a connection is "LAN" or not in the GUI
submitter: Sam Cymbaluk submitter: Sam Cymbaluk
submission: https://github.com/getumbrel/umbrel/pull/1092 submission: https://github.com/getumbrel/umbrel/pull/1092

View File

@ -7,7 +7,7 @@ services:
APP_PORT: 8123 APP_PORT: 8123
web: web:
image: djbooth007/tallycoin_connect:v1.7.5@sha256:136b7e09e3681fa24f73176a1a68715354d2d4b0fa20ca4bbc11356ced3f0f1e image: djbooth007/tallycoin_connect:v1.8.0@sha256:818868d99fcec7e0c371ff9b169b413627bc032218aa3aa0b7a99f14d0c598fd
user: "1000:1000" user: "1000:1000"
restart: on-failure restart: on-failure
stop_grace_period: 1m stop_grace_period: 1m

View File

@ -2,7 +2,7 @@ manifestVersion: 1
id: tallycoin-connect id: tallycoin-connect
category: Finance category: Finance
name: Tallycoin Connect name: Tallycoin Connect
version: "1.7.5" version: "1.8.0"
tagline: Crowdfund donations directly to your Umbrel node with Tallycoin. tagline: Crowdfund donations directly to your Umbrel node with Tallycoin.
description: Tallycoin is a crowdfunding platform with bitcoin and lightning donations. Together with the Tallycoin Connect app, you can receive donations directly to your Umbrel node. Zero fees! description: Tallycoin is a crowdfunding platform with bitcoin and lightning donations. Together with the Tallycoin Connect app, you can receive donations directly to your Umbrel node. Zero fees!
developer: djbooth007 developer: djbooth007
@ -19,6 +19,8 @@ gallery:
path: "" path: ""
deterministicPassword: true deterministicPassword: true
releaseNotes: >- releaseNotes: >-
Added: On-chain wallet fallback (server-side) in case node is offline. Added: LNURL and Lightning Address compatibility.
Fixed: Mobile view of transaction page.
submitter: d11n submitter: d11n
submission: https://github.com/getumbrel/umbrel/pull/1052 submission: https://github.com/getumbrel/umbrel/pull/1052

View File

@ -7,7 +7,7 @@ services:
APP_PORT: 7028 APP_PORT: 7028
web: web:
image: lncapital/torq:0.17.3@sha256:5a7da465ba7dc038e61439d92b7881adc37b9b00b06e69740c27d12c92d50b89 image: lncapital/torq:0.18.19@sha256:0439b903cf3c1af7e602e8b6516a3b7e34dce61ff01d8f1882ba0d3fcab0457f
user: "1000:1000" user: "1000:1000"
restart: on-failure restart: on-failure
stop_grace_period: 1m stop_grace_period: 1m
@ -28,6 +28,7 @@ services:
- /lnd/data/chain/bitcoin/${APP_BITCOIN_NETWORK}/admin.macaroon - /lnd/data/chain/bitcoin/${APP_BITCOIN_NETWORK}/admin.macaroon
- --lnd.tls-path - --lnd.tls-path
- /lnd/tls.cert - /lnd/tls.cert
- --torq.auto-login
- start - start
db: db:

View File

@ -2,7 +2,7 @@ manifestVersion: 1
id: torq id: torq
category: Lightning Node Management category: Lightning Node Management
name: Torq name: Torq
version: "v0.17.3" version: "v0.18.19"
tagline: Capital management for routing nodes on the lightning network tagline: Capital management for routing nodes on the lightning network
description: >- description: >-
Operating a routing node requires managing capital efficiently. If you look past the technical challenges, what you are trying to do is stack sats and support the network by routing liquidity. No matter your motivation, efficiently managing your capital is essential. Operating a routing node requires managing capital efficiently. If you look past the technical challenges, what you are trying to do is stack sats and support the network by routing liquidity. No matter your motivation, efficiently managing your capital is essential.
@ -32,6 +32,8 @@ description: >-
- Navigate through time (days, weeks, months) to track your progress - Navigate through time (days, weeks, months) to track your progress
- Tag channels and nodes with custom labels (Exchange, Routing node, Sink, Source, or anything else) - Tag channels and nodes with custom labels (Exchange, Routing node, Sink, Source, or anything else)
- Automation of channel policy (fee rate etc.) and add or remove tags
developer: LN Capital developer: LN Capital
website: https://ln.capital website: https://ln.capital
@ -45,27 +47,14 @@ gallery:
- 2.jpg - 2.jpg
- 3.jpg - 3.jpg
- 4.jpg - 4.jpg
releaseNotes: >- releaseNotes: >-
New features:
Bug fixes:
* Users can sign and verify signatures - Enable data streams by default
* Vector monitoring is now ready (and users can sign using Torq to get started)
* Channel point column in the channel stable
* In app "Help chat"
Fixes:
* Several UI fixes
* Links to mempool, amboss and 1ml are working again
* Fix events toggling on channel inspect page
path: "" path: ""
defaultUsername: "" defaultUsername: ""
deterministicPassword: true deterministicPassword: false
submitter: LN Capital submitter: LN Capital
submission: https://github.com/getumbrel/umbrel-apps/pull/269 submission: https://github.com/getumbrel/umbrel-apps/pull/269

View File

@ -6,7 +6,7 @@ services:
APP_PORT: 8090 APP_PORT: 8090
manager: manager:
image: mopfelwinrux/urbit-umbrel:v1.18@sha256:2b05ba5478081c209f22b4f01cd80b3b9f1139d8f3f5914be22024c0f97c37f8 image: mopfelwinrux/urbit-umbrel:v1.20@sha256:a1800b1a2da5da90aabb3f621d7b673a1cff5cca6d4032c7585d0e539f013f48
ports: ports:
- "34343:34343" - "34343:34343"
volumes: volumes:

View File

@ -2,7 +2,7 @@ manifestVersion: 1
id: urbit id: urbit
category: Networking category: Networking
name: Urbit name: Urbit
version: "v1.18" version: "v1.20"
tagline: Run Urbit on your Umbrel tagline: Run Urbit on your Umbrel
description: >- description: >-
Urbit is a personal server for self-sovereign personal & networked Urbit is a personal server for self-sovereign personal & networked
@ -35,18 +35,6 @@ torOnly: false
submitter: ~mopfel-winrux submitter: ~mopfel-winrux
submission: https://github.com/getumbrel/umbrel/pull/1246 submission: https://github.com/getumbrel/umbrel/pull/1246
releaseNotes: >- releaseNotes: >-
Adds runtime support for the doccords system, which is documentation Adds the %meme debug hint, resolves segfaults on macos-aarch64 builds, and adds a new --replay option.
parsed from comments in source code (Hoons version of docstrings).
Full release notes here: https://github.com/urbit/vere/releases/tag/vere-v1.20
Shoutout to ~datnut-pollen (@drbeefsupreme) for doing the huge amount of
work required in order to implement this system, which has been
theorized about for years. To see an example of it in action
immediately, run # ames in the dojo post upgrade. For the best current
documentation on doccords usage, see the example file.
This release accompanies urbit-os-v2.131.
Full release notes here: https://github.com/urbit/vere/releases/tag/vere-v1.18

View File

@ -7,7 +7,7 @@ services:
APP_PORT: 8080 APP_PORT: 8080
web: web:
image: woofbot/woofbot:v0.5.2@sha256:55647a3ea53433047f86f2ed2bd69369e935b92609af2840abceecd0a010be10 image: woofbot/woofbot:v0.6.0@sha256:9a3b2035613958be9d2ba5f68d2c793fcc47bbd3cfddf4122b39d01d240b3504
restart: on-failure restart: on-failure
stop_grace_period: 1m stop_grace_period: 1m
environment: environment:

View File

@ -2,7 +2,7 @@ manifestVersion: 1.1
id: woofbot id: woofbot
category: Finance category: Finance
name: WoofBot name: WoofBot
version: "0.5.2" version: "0.6.0"
tagline: A chatbot for your personal node tagline: A chatbot for your personal node
description: >- description: >-
WoofBot is a chat bot that runs on your personal Bitcoin node and sends telegram notifications WoofBot is a chat bot that runs on your personal Bitcoin node and sends telegram notifications
@ -22,12 +22,6 @@ path: ""
defaultUsername: "" defaultUsername: ""
defaultPassword: "" defaultPassword: ""
releaseNotes: > releaseNotes: >
- Upgrading to NodeJs 18 and updating dependencies - Permission Groups: add users to permission groups (i.e. "superusers", "plebs"), then set specific commands to be permitted only to specific groups.
- Saving log files in data folder for debugging
- Change the default explorer from mempool.space
- Limiting user entry via a whitelist
submitter: WoofBotApp submitter: WoofBotApp
submission: https://github.com/getumbrel/umbrel-apps/pull/28 submission: https://github.com/getumbrel/umbrel-apps/pull/28