Skip to content

Commit

Permalink
Remove now un-necessary ports
Browse files Browse the repository at this point in the history
Since LAVA does not use zmq, lot of ports are now unnecessary to export.

Signed-off-by: Corentin LABBE <[email protected]>
  • Loading branch information
montjoie committed Nov 17, 2023
1 parent d02c7bc commit 8456c3a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lavalab-gen.py
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ def main():
dockcomposeymlpath = "output/%s/docker-compose.yml" % host
dockcomp["services"][name] = {}
dockcomp["services"][name]["hostname"] = name
dockcomp["services"][name]["ports"] = [ str(webinterface_port) + ":80", "5555:5555", "5556:5556", "5500:5500" ]
dockcomp["services"][name]["ports"] = [ str(webinterface_port) + ":80"]
dockcomp["services"][name]["volumes"] = [ "/boot:/boot", "/lib/modules:/lib/modules" ]
dockcomp["services"][name]["build"] = {}
dockcomp["services"][name]["build"]["context"] = name
Expand Down

0 comments on commit 8456c3a

Please sign in to comment.