Build Service / BuildPackage (push) Canceled after 0s
Update to upstream Spaces 0.3.0 and refresh bundled images (subs v0.1.2c, certrelay v0.2.8, nacho v1.0.0b). Add Create/Show Registry API Keys for registry-server, remove Configure Subspaces and SUBS_PUBLISH_REQUIRE_FINALIZED, and align README/instructions with the new tags. Co-authored-by: Cursor <cursoragent@cursor.com>
44 lines
1.2 KiB
TypeScript
44 lines
1.2 KiB
TypeScript
import { setupManifest } from '@start9labs/start-sdk'
|
|
import { depBitcoindDescription, long, short } from './i18n'
|
|
|
|
export const manifest = setupManifest({
|
|
id: 'spaces',
|
|
title: 'Spaces',
|
|
license: 'MIT',
|
|
packageRepo: 'https://github.com/horologger/spaces-startos',
|
|
upstreamRepo: 'https://github.com/spacesops/spaced',
|
|
marketingUrl: 'https://spacesprotocol.org',
|
|
donationUrl: null,
|
|
docsUrls: ['https://docs.spacesprotocol.org/'],
|
|
description: { short, long },
|
|
volumes: ['main'],
|
|
images: {
|
|
spaces: {
|
|
source: { dockerTag: 'horologger/spaces:v0.3.0' },
|
|
arch: ['x86_64', 'aarch64'],
|
|
},
|
|
subspaces: {
|
|
source: { dockerTag: 'horologger/subs:v0.1.2c' },
|
|
arch: ['x86_64', 'aarch64'],
|
|
},
|
|
certrelay: {
|
|
source: { dockerTag: 'horologger/certrelay:v0.2.8' },
|
|
arch: ['x86_64', 'aarch64'],
|
|
},
|
|
nacho: {
|
|
source: { dockerTag: 'horologger/nacho:v1.0.0b' },
|
|
arch: ['x86_64', 'aarch64'],
|
|
},
|
|
},
|
|
dependencies: {
|
|
bitcoind: {
|
|
description: depBitcoindDescription,
|
|
optional: false,
|
|
metadata: {
|
|
title: 'Bitcoin',
|
|
icon: 'https://raw.githubusercontent.com/Start9Labs/bitcoin-core-startos/feec0b1dae42961a257948fe39b40caf8672fce1/dep-icon.svg',
|
|
},
|
|
},
|
|
},
|
|
})
|