workloads / main / Configuration
Interface: Configuration
Properties
Property | Type | Description |
---|---|---|
containers? | object | Container configurations. |
containers.minio? | ContainerConfig | Default { imageName: "localstack/localstack:3.8.1", exposedPorts: [ { container: 4566, host: 4566 } ] } |
containers.mySqlDatabase? | ContainerConfig | Default { imageName: "mysql:8.4.3", exposedPorts: [ { container: 3306, host: 3306 } ] } |
containers.postgresDatabase? | ContainerConfig | Default { imageName: "postgres:16.5-alpine3.20", exposedPorts: [ { container: 5432, host: 5432 } ] } |
containers.redis? | ContainerConfig | Default { imageName: "redis:7.4.1-alpine3.20", exposedPorts: [ { container: 6379, host: 6379 } ] } |
envFileName? | object | Names of the dotenv files to write the workloads' connection strings. |
envFileName.development? | string | File name for development. Default .env.local |
envFileName.test? | string | File name for test. Default .env.test.local |
workloadsPath | string | Path to a folder with workloads. |