File tree 4 files changed +15
-6
lines changed
4 files changed +15
-6
lines changed Original file line number Diff line number Diff line change @@ -68,4 +68,5 @@ http_external_network=
68
68
# Useful for testing.
69
69
external_default_network =
70
70
71
- ethapi_bind_address =
71
+ # Expose services required by recall CLI on the specified host
72
+ localhost_cli_bind_host =
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ services :
2
+ cometbft :
3
+ ports :
4
+ - $localhost_cli_bind_host:26657:26657
5
+
6
+ ethapi :
7
+ ports :
8
+ - $localhost_cli_bind_host:8645:8545
9
+
10
+ objects :
11
+ ports :
12
+ - $localhost_cli_bind_host:8001:8001
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ function set_compose_files {
19
19
[ " $enable_recall_s3 " == " true" ] && COMPOSE_FILE=" $COMPOSE_FILE :./config/snippets/http-network-recall-s3.yml"
20
20
fi
21
21
[ ! -z " $external_default_network " ] && COMPOSE_FILE=" $COMPOSE_FILE :./config/snippets/external-default-network.yml"
22
- [ ! -z " $ethapi_bind_address " ] && COMPOSE_FILE=" $COMPOSE_FILE :./config/snippets/ethapi -port-mapping.yml"
22
+ [ ! -z " $localhost_cli_bind_host " ] && COMPOSE_FILE=" $COMPOSE_FILE :./config/snippets/localnet-cli -port-mapping.yml"
23
23
[ ! -z " $host_bind_ip " ] && COMPOSE_FILE=" $COMPOSE_FILE :./config/snippets/port-mapping.yml"
24
24
export COMPOSE_FILE
25
25
}
You can’t perform that action at this time.
0 commit comments