Redis
An in-memory data store used as a database, cache, and message broker for high-performance applications.
messagingdatabase
Usage
import { defineConfig } from 'dockup/config';
import { redis } from 'dockup/services';
export default defineConfig({
services: [
redis()
],
});
Options
Prop | Type | Default |
---|---|---|
port? | number | 6379 |
name? | string | - |
image? | string | - |
extend? | ((service: ContainerService) => ContainerService) | - |