fix(core): update

This commit is contained in:
Philipp Kunz 2024-06-10 01:10:18 +02:00
parent d946bfd536
commit c9c0a7044e
4 changed files with 3 additions and 3 deletions

View File

@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@serve.zone/interfaces',
version: '1.0.63',
version: '1.0.64',
description: 'interfaces for working with containers'
}

View File

@ -7,7 +7,7 @@ export * from './docker.js';
export * from './env.js';
export * from './event.js';
export * from './image.js';
export * from './secretgroup.js';
export * from './secretbundle.js';
export * from './secretgroup.js'
export * from './server.js';
export * from './service.js';

View File

@ -5,13 +5,13 @@ export interface IService {
imageId: string;
scaleFactor: number;
balancingStrategy: 'round-robin' | 'least-connections';
secrets: { [key: string]: string };
ports: {
web: number;
custom?: { [domain: string]: string };
};
resources?: IServiceRessources;
domains: string[];
secrets: { [key: string]: string };
deploymentIds: string[];
deploymentDirectiveIds: string[];
}