我正在像这样从cmd成功地旋转Rabbitmq容器
<?php if( $comment->comment_parent ) : ?>
// This is a CHILD comment
<?php else: ?>
// This is a NORMAL comment
<?php endif; ?>
但是当我尝试使用
将其旋转时docker run -d --rm -p 5672:5672 --hostname my-rabbit --name some-rabbit rabbitmq:3
我收到未知标志:
child_process.spawn('docker',['run','-d','--rm','-p 5672:5672', '--hostname my-rabbit','--name some-rabbit','rabbitmq:3'],{ stdio: 'inherit' });
答案 0 :(得分:0)
您需要分隔属性和值:
child_process.spawn('docker',['run', '-d', '--rm', '-p', '5672:5672', '--hostname', 'my-rabbit', '--name', 'some-rabbit', 'rabbitmq:3'],{ stdio: 'inherit' });