Skip to content
Snippets Groups Projects
Commit f1191d77 authored by Stefano Di Frischia's avatar Stefano Di Frischia
Browse files

L2SS-751: expose zmq ports on device servers

parent 5abe25d0
No related branches found
No related tags found
1 merge request!418Resolve L2SS-751 "Expose zmq ports"
......@@ -32,6 +32,8 @@ services:
- control
ports:
- "5705:5705" # unique port for this DS
- "5805:5805" # ZeroMQ event port
- "5905:5905" # ZeroMQ heartbeat port
extra_hosts:
- "host.docker.internal:host-gateway"
volumes:
......@@ -40,6 +42,8 @@ services:
user: 1000:${DOCKER_GID} # uid 1000 is the default "tango" user
environment:
- TANGO_HOST=${TANGO_HOST}
- TANGO_ZMQ_EVENT_PORT=5805
- TANGO_ZMQ_HEARTBEAT_PORT=5905
working_dir: /opt/lofar/tango
entrypoint:
- bin/start-ds.sh
......
......@@ -31,12 +31,16 @@ services:
- control
ports:
- "5703:5703" # unique port for this DS
- "5803:5803" # ZeroMQ event port
- "5903:5903" # ZeroMQ heartbeat port
extra_hosts:
- "host.docker.internal:host-gateway"
volumes:
- ..:/opt/lofar/tango:rw
environment:
- TANGO_HOST=${TANGO_HOST}
- TANGO_ZMQ_EVENT_PORT=5803
- TANGO_ZMQ_HEARTBEAT_PORT=5903
working_dir: /opt/lofar/tango
entrypoint:
- bin/start-ds.sh
......
......@@ -32,12 +32,16 @@ services:
- control
ports:
- "5701:5701" # unique port for this DS
- "5801:5801" # ZeroMQ event port
- "5901:5901" # ZeroMQ heartbeat port
extra_hosts:
- "host.docker.internal:host-gateway"
volumes:
- ..:/opt/lofar/tango:rw
environment:
- TANGO_HOST=${TANGO_HOST}
- TANGO_ZMQ_EVENT_PORT=5801
- TANGO_ZMQ_HEARTBEAT_PORT=5901
working_dir: /opt/lofar/tango
entrypoint:
- bin/start-ds.sh
......
......@@ -35,12 +35,16 @@ services:
- "5001:5001/udp" # port to receive SST UDP packets on
- "5101:5101/tcp" # port to emit SST TCP packets on
- "5702:5702" # unique port for this DS
- "5802:5802" # ZeroMQ event port
- "5902:5902" # ZeroMQ heartbeat port
extra_hosts:
- "host.docker.internal:host-gateway"
volumes:
- ..:/opt/lofar/tango:rw
environment:
- TANGO_HOST=${TANGO_HOST}
- TANGO_ZMQ_EVENT_PORT=5802
- TANGO_ZMQ_HEARTBEAT_PORT=5902
working_dir: /opt/lofar/tango
entrypoint:
- bin/start-ds.sh
......
......@@ -32,12 +32,16 @@ services:
- control
ports:
- "5704:5704" # unique port for this DS
- "5804:5804" # ZeroMQ event port
- "5904:5904" # ZeroMQ heartbeat port
extra_hosts:
- "host.docker.internal:host-gateway"
volumes:
- ..:/opt/lofar/tango:rw
environment:
- TANGO_HOST=${TANGO_HOST}
- TANGO_ZMQ_EVENT_PORT=5804
- TANGO_ZMQ_HEARTBEAT_PORT=5904
working_dir: /opt/lofar/tango
entrypoint:
- bin/start-ds.sh
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment