|
53 | 53 | docker run -d --restart unless-stopped --name ethlambda_0 --network host \ |
54 | 54 | -v $GENESIS:/config -v $DATA/ethlambda_0:/data \ |
55 | 55 | $IMAGE \ |
56 | | - --custom-network-config-dir /config \ |
| 56 | + --genesis /config/config.yaml \ |
| 57 | + --validators /config/annotated_validators.yaml \ |
| 58 | + --bootnodes /config/nodes.yaml \ |
| 59 | + --validator-config /config/validator-config.yaml \ |
| 60 | + --hash-sig-keys-dir /config/hash-sig-keys \ |
57 | 61 | --gossipsub-port 9001 --node-id ethlambda_0 \ |
58 | 62 | --node-key /config/ethlambda_0.key \ |
59 | 63 | --http-address 0.0.0.0 --api-port 5052 --metrics-port 8081 |
60 | 64 |
|
61 | 65 | docker run -d --restart unless-stopped --name ethlambda_1 --network host \ |
62 | 66 | -v $GENESIS:/config -v $DATA/ethlambda_1:/data \ |
63 | 67 | $IMAGE \ |
64 | | - --custom-network-config-dir /config \ |
| 68 | + --genesis /config/config.yaml \ |
| 69 | + --validators /config/annotated_validators.yaml \ |
| 70 | + --bootnodes /config/nodes.yaml \ |
| 71 | + --validator-config /config/validator-config.yaml \ |
| 72 | + --hash-sig-keys-dir /config/hash-sig-keys \ |
65 | 73 | --gossipsub-port 9002 --node-id ethlambda_1 \ |
66 | 74 | --node-key /config/ethlambda_1.key \ |
67 | 75 | --http-address 0.0.0.0 --api-port 5053 --metrics-port 8082 |
68 | 76 |
|
69 | 77 | docker run -d --restart unless-stopped --name ethlambda_2 --network host \ |
70 | 78 | -v $GENESIS:/config -v $DATA/ethlambda_2:/data \ |
71 | 79 | $IMAGE \ |
72 | | - --custom-network-config-dir /config \ |
| 80 | + --genesis /config/config.yaml \ |
| 81 | + --validators /config/annotated_validators.yaml \ |
| 82 | + --bootnodes /config/nodes.yaml \ |
| 83 | + --validator-config /config/validator-config.yaml \ |
| 84 | + --hash-sig-keys-dir /config/hash-sig-keys \ |
73 | 85 | --gossipsub-port 9003 --node-id ethlambda_2 \ |
74 | 86 | --node-key /config/ethlambda_2.key \ |
75 | 87 | --http-address 0.0.0.0 --api-port 5054 --metrics-port 8083 |
76 | 88 |
|
77 | 89 | docker run -d --restart unless-stopped --name ethlambda_3 --network host \ |
78 | 90 | -v $GENESIS:/config -v $DATA/ethlambda_3:/data \ |
79 | 91 | $IMAGE \ |
80 | | - --custom-network-config-dir /config \ |
| 92 | + --genesis /config/config.yaml \ |
| 93 | + --validators /config/annotated_validators.yaml \ |
| 94 | + --bootnodes /config/nodes.yaml \ |
| 95 | + --validator-config /config/validator-config.yaml \ |
| 96 | + --hash-sig-keys-dir /config/hash-sig-keys \ |
81 | 97 | --gossipsub-port 9004 --node-id ethlambda_3 \ |
82 | 98 | --node-key /config/ethlambda_3.key \ |
83 | 99 | --is-aggregator \ |
@@ -141,7 +157,11 @@ sleep 60 |
141 | 157 | docker run -d --restart unless-stopped --name ethlambda_0 --network host \ |
142 | 158 | -v $GENESIS:/config -v $DATA/ethlambda_0:/data \ |
143 | 159 | $NEW_IMAGE \ |
144 | | - --custom-network-config-dir /config \ |
| 160 | + --genesis /config/config.yaml \ |
| 161 | + --validators /config/annotated_validators.yaml \ |
| 162 | + --bootnodes /config/nodes.yaml \ |
| 163 | + --validator-config /config/validator-config.yaml \ |
| 164 | + --hash-sig-keys-dir /config/hash-sig-keys \ |
145 | 165 | --gossipsub-port 9001 --node-id ethlambda_0 \ |
146 | 166 | --node-key /config/ethlambda_0.key \ |
147 | 167 | --http-address 0.0.0.0 --api-port 5052 --metrics-port 8081 \ |
|
0 commit comments