yii2-queue config for DI?

Give a working config for DI?
With bootstrap section.
This not work:

'bootstrap' => [
    'yii\queue\Queue' 
],
'container' => [
    'singletons' => [
        'yii\queue\Queue' => [
            'class' => \yii\queue\redis\Queue::class,
            'channel' => 'default',
            'redis' => 'redis',
        ],
        'redis' => [
            'class' => 'yii\redis\Connection',
            'hostname' => '127.0.0.1',
            'port' => 6379,
            'database' => 0,
        ],
    ],
],