Skip to content

Commit 96a2f54

Browse files
committed
Fix unintentional udp/tcp switch in networking definition
1 parent 6212fc2 commit 96a2f54

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docker/docker-compose.networking.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,15 @@ services:
2121
networks:
2222
- dds
2323
ports:
24-
- "${UXRCE_DDS_PRT:?empty or not set}:${UXRCE_DDS_PRT:?empty or not set}/tcp"
24+
- "${UXRCE_DDS_PRT:?empty or not set}:${UXRCE_DDS_PRT:?empty or not set}/udp"
2525
environment:
2626
UXRCE_DDS_PRT: ${UXRCE_DDS_PRT:?empty or not set}
2727

2828
ubx:
2929
networks:
3030
- dds
3131
ports:
32-
- "${SOCAT_BRIDGE_PORT:?empty or not set}:${SOCAT_BRIDGE_PORT:?empty or not set}/udp"
32+
- "${SOCAT_BRIDGE_PORT:?empty or not set}:${SOCAT_BRIDGE_PORT:?empty or not set}/tcp"
3333
environment:
3434
SOCAT_BRIDGE_PORT: ${SOCAT_BRIDGE_PORT:?empty or not set}
3535
GISNAV_FCU_URL: ${GISNAV_FCU_URL:?empty or not set} # todo TCP bridge only for simulation?
@@ -40,7 +40,7 @@ services:
4040
networks:
4141
- dds
4242
ports:
43-
- "${SOCAT_BRIDGE_PORT:?empty or not set}:${SOCAT_BRIDGE_PORT:?empty or not set}/udp"
43+
- "${SOCAT_BRIDGE_PORT:?empty or not set}:${SOCAT_BRIDGE_PORT:?empty or not set}/tcp"
4444
environment:
4545
SOCAT_BRIDGE_PORT: ${SOCAT_BRIDGE_PORT:?empty or not set}
4646
GISNAV_FCU_URL: ${GISNAV_FCU_URL:?empty or not set} # todo TCP bridge only for simulation?

0 commit comments

Comments
 (0)