feat: update RomM package to 5.1.0

- pin the RomM 5.1.0 multi-architecture image
- mount the main volume at /romm for hardlink support
- update release notes, configuration text, and documentation
- replace the invalid icon with the official RomM isotipo
- ignore local AI workspace files and build artifacts
This commit is contained in:
2026-08-08 22:01:18 -05:00
parent c51740c589
commit 395e8b3bd1
13 changed files with 46 additions and 225 deletions
+5 -22
View File
@@ -5,7 +5,8 @@ import {
databaseName,
databasePort,
databaseUser,
mainMounts,
mainMountpoint,
redisMountpoint,
uiPort,
} from './utils'
@@ -37,32 +38,14 @@ export const main = sdk.setupMain(async ({ effects }) => {
sdk.Mounts.of()
.mountVolume({
volumeId: 'main',
subpath: 'library',
mountpoint: mainMounts.library,
readonly: false,
})
.mountVolume({
volumeId: 'main',
subpath: 'resources',
mountpoint: mainMounts.resources,
readonly: false,
})
.mountVolume({
volumeId: 'main',
subpath: 'assets',
mountpoint: mainMounts.assets,
readonly: false,
})
.mountVolume({
volumeId: 'main',
subpath: 'config',
mountpoint: mainMounts.config,
subpath: null,
mountpoint: mainMountpoint,
readonly: false,
})
.mountVolume({
volumeId: 'main',
subpath: 'redis-data',
mountpoint: mainMounts.redis,
mountpoint: redisMountpoint,
readonly: false,
}),
'romm-app-sub',