From cdd88ebd0a26b2a90c123b7bb34a9b87aeb3498e Mon Sep 17 00:00:00 2001 From: Unheard0840 Date: Wed, 5 Aug 2026 16:51:03 +0000 Subject: [PATCH] Add startos/manifest/index.ts Add Munin Bitcoin StartOS manifest --- startos/manifest/index.ts | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 startos/manifest/index.ts diff --git a/startos/manifest/index.ts b/startos/manifest/index.ts new file mode 100644 index 0000000..3b45f08 --- /dev/null +++ b/startos/manifest/index.ts @@ -0,0 +1,32 @@ +import { setupManifest } from '@start9labs/start-sdk' +import { long, short } from './i18n' + +export const manifest = setupManifest({ + id: 'munin-bitcoin', + title: 'Munin Bitcoin', + license: 'MIT', + + packageRepo: 'https://github.com/munin-bitcoin/munin-bitcoin', + upstreamRepo: 'https://github.com/munin-bitcoin/munin-bitcoin', + + description: { short, long }, + + volumes: [ + 'main', + ], + + images: { + 'munin-bitcoin': { + source: { + dockerTag: 'ghcr.io/munin-bitcoin/munin-bitcoin:0.1.0', + }, + arch: [ + 'x86_64', + 'aarch64', + 'riscv64', + ], + }, + }, + + dependencies: {}, +}) \ No newline at end of file