Skip to content

Commit

Permalink
refactor: change entrypoint to cmd and change port key value to ws
Browse files Browse the repository at this point in the history
  • Loading branch information
abhiyana committed Oct 31, 2023
1 parent c2b4718 commit 16dbfb5
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions parachain/kintsungi.star
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
def run_kintsungi(plan,args):

exec_command = [
"bin/sh",
"-c",
"/usr/local/bin/interbtc-parachain",
"--chain=dev",
"--wasm-execution=compiled",
"--force-authoring",
Expand All @@ -24,9 +21,9 @@ def run_kintsungi(plan,args):
"/app":"configs"
},
ports = {
"tcp" : PortSpec(9944, transport_protocol="TCP"),
"ws" : PortSpec(9944, transport_protocol="TCP"),
},
entrypoint=exec_command
cmd=exec_command
)
)

Expand Down

0 comments on commit 16dbfb5

Please sign in to comment.