matrix-chart icon indicating copy to clipboard operation
matrix-chart copied to clipboard

Fix launch of matrix-bridge-irc.

Open damomurf opened this issue 5 years ago • 0 comments

This resolves the issue I experienced in https://github.com/dacruz21/matrix-chart/issues/44. The latest versions of the matrixdotorg/matrix-appservice-irc container image launches the node.js process with incompatible defaults as below. This PR will allow the chart to work out of the box with the default values.:

Container defaults:

exec node app.js -c /data/config.yaml -p 9995 -f /data/appservice-registration-irc.yaml -u http://localhost:9995

This PR changes the execution to:

          command: "node"
          args: [ "app.js", "-c", "/data/config.yaml", "-f", "/data/appservice-registration-irc.yaml" ]

damomurf avatar Oct 04 '20 07:10 damomurf