feat: Add log streaming functionality for Docker containers and improve platform service type handling in HTTP server

This commit is contained in:
2025-11-25 08:34:10 +00:00
parent e94906b3bf
commit 76793d512b
3 changed files with 55 additions and 6 deletions

View File

@@ -45,10 +45,10 @@ export class RegistryManager {
this.s3Server = await plugins.smarts3.Smarts3.createAndStart({
server: {
port: port,
host: '0.0.0.0',
address: '0.0.0.0',
},
storage: {
bucketsDir: dataDir,
directory: dataDir,
cleanSlate: false, // Preserve data across restarts
},
});
@@ -70,9 +70,13 @@ export class RegistryManager {
},
auth: {
jwtSecret: this.jwtSecret,
tokenStore: 'memory',
npmTokens: {
enabled: false,
},
ociTokens: {
enabled: true,
issuer: 'onebox-registry',
realm: 'onebox-registry',
service: 'onebox-registry',
},
},