Interface IDatabaseService

interface IDatabaseService {
    backups: IServiceBackup;
    command: null | string;
    enabled: boolean;
    env: null | string;
    exposedPort: number;
    image: string;
    name: string;
    password: string;
    projectName: string;
    resources: IResourceLimits;
    type: DatabaseServiceType;
}

Hierarchy

Properties

command: null | string
enabled: boolean
env: null | string
exposedPort: number
image: string
name: string
password: string
projectName: string
resources: IResourceLimits

Redis is not a database but it contains same features.

Generated using TypeDoc