Skip to content

Commit

Permalink
Update to 0.12.8 (#39)
Browse files Browse the repository at this point in the history
  • Loading branch information
Dominion5254 authored Jun 4, 2024
1 parent e6e158a commit 64d7277
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 22 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
FROM lnbits/lnbits:0.12.5 as builder
FROM lnbits/lnbits:0.12.8 as builder

# arm64 or amd64
ARG PLATFORM

RUN apt-get update && apt-get install -y bash curl sqlite3 tini --no-install-recommends
RUN curl -sS https://webi.sh/yq | sh

FROM lnbits/lnbits:0.12.5 as final
FROM lnbits/lnbits:0.12.8 as final

COPY --from=builder /usr/bin/tini /usr/bin/tini
COPY --from=builder /usr/bin/sqlite3 /usr/bin/sqlite3
Expand Down
36 changes: 17 additions & 19 deletions manifest.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
id: lnbits
id: lnbits
title: "LNBits"
version: 0.12.5
version: 0.12.8
release-notes: |
* Update LNbits to 0.12.5 - Full release notes available [here](https://github.com/lnbits/lnbits/releases/tag/0.12.5).
* Update icon
* Minor fixes and optimizations
* Update LNbits to 0.12.8 - Full release notes available [here](https://github.com/lnbits/lnbits/releases/tag/0.12.8).
license: MIT
wrapper-repo: "https://github.com/Start9Labs/lnbits-startos"
upstream-repo: "https://github.com/lnbits/lnbits"
Expand Down Expand Up @@ -40,7 +38,7 @@ health-checks:
inject: true
system: false
io-format: json
config:
config:
get:
type: script
set:
Expand Down Expand Up @@ -96,15 +94,15 @@ backup:
create:
type: docker
image: compat
system: true
entrypoint: compat
args:
system: true
entrypoint: compat
args:
- duplicity
- create
- /mnt/backup
- /app/data/data
mounts:
BACKUP: "/mnt/backup"
BACKUP: "/mnt/backup"
main: "/app/data/data"
restore:
type: docker
Expand All @@ -120,14 +118,14 @@ backup:
BACKUP: "/mnt/backup"
main: "/app/data/data"
migrations:
from:
"*":
type: script
args: ["from"]
to:
"*":
type: script
args: ["to"]
from:
"*":
type: script
args: ["from"]
to:
"*":
type: script
args: ["to"]
actions:
reset-pass:
name: "Reset Superuser Password"
Expand All @@ -142,4 +140,4 @@ actions:
entrypoint: reset-pass.sh
inject: true
args: []
io-format: json
io-format: json
2 changes: 1 addition & 1 deletion scripts/services/migrations.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,5 @@ export const migration: T.ExpectedExports.migration = compat.migrations
),
},
},
"0.12.5",
"0.12.8",
);

0 comments on commit 64d7277

Please sign in to comment.