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