cargo build --release --features with-acala-runtime
./target/release acala --chain=acala
acala/acala-node:latest
or acala/acala-node:[version number]
docker run acala/acala-node:latest --chain=acala
--
is used to split the CLI. Arguments before --
are passed to the parachain full-node service and arguments after --
is passed to the Relay Chain full-node service.--chain=parachain.json --ws-port=9944 -- --chain=relaychain.json --ws-port=9945
meansparachain.json
as the chain spec and the web socket RPC port is 9944relaychain.json
as the chain spec and the web socket--listen-addr=/ip4/0.0.0.0/tcp/30333 --listen-addr=/ip4/0.0.0.0/tcp/30334/ws -- --listen-addr=/ip4/0.0.0.0/tcp/30335 --listen-addr=/ip4/0.0.0.0/tcp/30336/ws
--execution=wasm
for parachain service to avoid syncing issues.