mirror of
https://github.com/RoboSats/robosats-startos.git
synced 2025-07-20 01:33:16 +00:00
Update to RoboSats client v0.7.0 (+1ba8183)
This commit is contained in:
@ -1,4 +1,4 @@
|
||||
FROM recksato/robosats-client:v0.6.0-alpha
|
||||
FROM recksato/robosats-client:1ba8183
|
||||
RUN apk add bash curl sudo tini wget yq; \
|
||||
rm -f /var/cache/apk/*
|
||||
|
||||
@ -10,3 +10,4 @@ ENV TOR_PROXY_PORT 9050
|
||||
ADD ./docker_entrypoint.sh /usr/local/bin/docker_entrypoint.sh
|
||||
RUN chmod a+x /usr/local/bin/*.sh
|
||||
RUN chmod a+x *.sh
|
||||
|
||||
|
@ -1,12 +1,13 @@
|
||||
id: robosats
|
||||
title: "RoboSats"
|
||||
version: 0.6.0
|
||||
version: 0.7.0.1
|
||||
release-notes: |
|
||||
* Updated to v0.6.0-alpha [Release Notes](https://github.com/RoboSats/robosats/releases/tag/v0.6.0-alpha)
|
||||
* Updated to RoboSats v0.7.0-alpha [Release Notes](https://github.com/RoboSats/robosats/releases/tag/v0.7.0-alpha)(client+[patch 1ba8183](https://github.com/RoboSats/robosats/issues/1373#issuecomment-2345859784))
|
||||
* Add .local LAN interface
|
||||
license: mit
|
||||
wrapper-repo: "https://github.com/kn0wmad/robosats-wrapper"
|
||||
wrapper-repo: "https://github.com/RoboSats/robosats-startos"
|
||||
upstream-repo: "https://github.com/Reckless-Satoshi/robosats"
|
||||
support-site: "https://github.com/Reckless-Satoshi/robosats/issues"
|
||||
support-site: "https://github.com/RoboSats/robosats-startos/issues"
|
||||
marketing-site: "https://learn.robosats.com/"
|
||||
donation-url: "https://learn.robosats.com/contribute/donate/"
|
||||
# The series of commands to build the project into an s9pk for arm64/v8. In this case we are using a Makefile with the simple build command "make".
|
||||
@ -57,9 +58,13 @@ interfaces:
|
||||
# A descriptive description of what the interface does
|
||||
description: Your RoboSats Tor Hidden Service address
|
||||
tor-config:
|
||||
# Port mappings are from the external port to the internal container port
|
||||
# Port mappings are from the external port to the internal container port
|
||||
port-mapping:
|
||||
80: "12596"
|
||||
lan-config:
|
||||
443:
|
||||
ssl: true
|
||||
internal: 12596
|
||||
# Port mappings are from the external port to the internal container port
|
||||
# Denotes if the service has a user interface to display
|
||||
ui: true
|
||||
|
@ -1,8 +0,0 @@
|
||||
#!/bin/bash
|
||||
|
||||
# install yq
|
||||
wget https://github.com/mikefarah/yq/releases/latest/download/yq_linux_amd64 -O /usr/bin/yq &&\
|
||||
chmod +x /usr/bin/yq
|
||||
|
||||
# install deno
|
||||
cargo install deno
|
@ -1,4 +1,4 @@
|
||||
import { compat, types as T } from "../deps.ts";
|
||||
|
||||
export const migration: T.ExpectedExports.migration = compat.migrations
|
||||
.fromMapping({}, "0.6.0" );
|
||||
export const migration: T.ExpectedExports.migration =
|
||||
compat.migrations.fromMapping({}, "0.7.0.1");
|
||||
|
Reference in New Issue
Block a user