Skip to content

Commit c2b0ba6

Browse files
authored
[devops] update docker-compose (#529)
1 parent 9cc8496 commit c2b0ba6

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

cmd/coordinator/config/config.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ var (
6767
ChainEndpoint: "https://babel-api.testnet.iotex.io",
6868
DatabaseDSN: "postgres://test_user:test_passwd@localhost:15432/test?sslmode=disable",
6969
DefaultDatasourceURI: "postgres://test_user:test_passwd@localhost:15432/test?sslmode=disable",
70-
BootNodeMultiAddr: "/ip4/bootnode/tcp/18000/p2p/12D3KooWJkfxZL1dx74yM1afWof6ka4uW5jMsoGasCSBwGyCUJML",
70+
BootNodeMultiAddr: "/dns4/bootnode/tcp/18000/p2p/12D3KooWJkfxZL1dx74yM1afWof6ka4uW5jMsoGasCSBwGyCUJML",
7171
IoTeXChainID: 2,
7272
ProjectContractAddress: "", //"0x02feBE78F3A740b3e9a1CaFAA1b23a2ac0793D26",
7373
IPFSEndpoint: "ipfs.mainnet.iotex.io",

cmd/prover/config/config.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ var (
7373
ChainEndpoint: "https://babel-api.testnet.iotex.io",
7474
ProjectContractAddress: "",
7575
DatabaseDSN: "postgres://test_user:test_passwd@localhost:15432/test?sslmode=disable",
76-
BootNodeMultiAddr: "/ip4/bootnode/tcp/18000/p2p/12D3KooWJkfxZL1dx74yM1afWof6ka4uW5jMsoGasCSBwGyCUJML",
76+
BootNodeMultiAddr: "/dns4/bootnode/tcp/18000/p2p/12D3KooWJkfxZL1dx74yM1afWof6ka4uW5jMsoGasCSBwGyCUJML",
7777
ProverContractAddress: "",
7878
ProverOperatorPrivateKey: "a5f4e99aa80342d5451e8f8fd0dc357ccddb70d3827428fb1fc366f70833497f",
7979
IoTeXChainID: 2,

docker-compose.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ services:
1010
- "8000:8000"
1111

1212
sequencer:
13-
image: ghcr.io/machinefi/sequencer:v0.10.1
13+
image: ghcr.io/machinefi/sequencer:v0.11.1
1414
depends_on:
1515
- "postgres"
1616
- "coordinator"
@@ -22,7 +22,7 @@ services:
2222
command: [ "-coordinatorAddress", "coordinator:9001", "-databaseDSN", "postgres://test_user:test_passwd@postgres:5432/test?sslmode=disable" ]
2323

2424
coordinator:
25-
image: ghcr.io/machinefi/coordinator:v0.10.1
25+
image: ghcr.io/machinefi/coordinator:v0.11.1
2626
depends_on:
2727
- "postgres"
2828
- "bootnode"
@@ -34,14 +34,14 @@ services:
3434
environment:
3535
COORDINATOR_ENV: PROD
3636
PROJECT_FILE_DIRECTORY: "/data"
37-
BOOTNODE_MULTIADDR: "/ip4/bootnode/tcp/8000/p2p/12D3KooWJkfxZL1dx74yM1afWof6ka4uW5jMsoGasCSBwGyCUJML"
37+
BOOTNODE_MULTIADDR: "/dns4/bootnode/tcp/8000/p2p/12D3KooWJkfxZL1dx74yM1afWof6ka4uW5jMsoGasCSBwGyCUJML"
3838
OPERATOR_PRIVATE_KEY: ${PRIVATE_KEY:-}
3939
OPERATOR_PRIVATE_KEY_ED25519: ${PRIVATE_KEY_ED25519:-}
4040
volumes:
4141
- ./test/project:/data
4242

4343
prover:
44-
image: ghcr.io/machinefi/prover:v0.10.1
44+
image: ghcr.io/machinefi/prover:v0.11.1
4545
depends_on:
4646
- "risc0"
4747
- "halo2"
@@ -55,7 +55,7 @@ services:
5555
environment:
5656
PROVER_ENV: PROD
5757
PROJECT_FILE_DIRECTORY: "/data"
58-
BOOTNODE_MULTIADDR: "/ip4/bootnode/tcp/8000/p2p/12D3KooWJkfxZL1dx74yM1afWof6ka4uW5jMsoGasCSBwGyCUJML"
58+
BOOTNODE_MULTIADDR: "/dns4/bootnode/tcp/8000/p2p/12D3KooWJkfxZL1dx74yM1afWof6ka4uW5jMsoGasCSBwGyCUJML"
5959
volumes:
6060
- ./test/project:/data
6161

0 commit comments

Comments
 (0)