From 0191f814865b23a000f29808124b5335306bc771 Mon Sep 17 00:00:00 2001 From: Steffen Vogel Date: Wed, 28 Jun 2017 13:28:50 +0200 Subject: [PATCH] fix docker-compose file --- docker-compose.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index d89820c..68683b1 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -61,7 +61,9 @@ services: node: image: villas/node:latest privileged: true - command: [ "node", "/etc/villas/node/websocket.conf" ] + command: + - "node" + - "/etc/villas/node/websocket.conf" expose: - "12000/udp" ports: @@ -76,7 +78,9 @@ services: image: villas/node:latest privileged: true entrypoint: bash - command: [ "-c", "villas signal mixed -v4 | villas pipe -x /etc/villas/node/websocket.conf udp_1"] + command: + - "-c" + - "villas signal mixed -v4 | villas pipe -x /etc/villas/node/websocket.conf udp_1" volumes: - "./etc/node/:/etc/villas/node/" stop_signal: SIGINT