Skip to content

Commit ff7fa35

Browse files
committed
docker: removed references to bridge clients
1 parent f62245b commit ff7fa35

File tree

4 files changed

+0
-141
lines changed

4 files changed

+0
-141
lines changed

docker/README.md

-3
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,6 @@ After that, you can simply restart the containers:
4242
```bash
4343
docker start strata_sequencer
4444
docker start strata_reth_fn # if you want to test the full node
45-
# if you want to test the bridge clients
46-
docker start bridge-client-1
47-
docker start bridge-client-2
4845
```
4946

5047

docker/bridge-client/Dockerfile

-58
This file was deleted.

docker/bridge-client/entrypoint.sh

-35
This file was deleted.

docker/docker-compose.yml

-45
Original file line numberDiff line numberDiff line change
@@ -14,24 +14,6 @@ x-base-reth: &base-reth
1414
networks:
1515
- strata_network
1616

17-
x-base-bridge-client: &base-bridge-client
18-
build:
19-
context: ../
20-
dockerfile: ./docker/bridge-client/Dockerfile
21-
image: "strata_bridge_client:v0.1.0"
22-
environment:
23-
BTC_URL: "http://bitcoind:18443"
24-
BTC_USER: rpcuser
25-
BTC_PASS: rpcpassword
26-
RPC_HOST: "0.0.0.0"
27-
RPC_PORT: 4781 # default
28-
ROLLUP_URL: "ws://sequencer:8432"
29-
DATADIR: .data # default
30-
networks:
31-
- strata_network
32-
depends_on:
33-
- sequencer
34-
3517
x-base-prover: &base-prover
3618
build:
3719
context: ../
@@ -139,7 +121,6 @@ services:
139121
"--enable-checkpoint-runner", "true"
140122
]
141123

142-
143124
fullnode:
144125
<<: *base-client
145126
container_name: strata_fullnode
@@ -170,9 +151,6 @@ services:
170151
BITCOIND_RPC_USER: rpcuser
171152
BITCOIND_RPC_PASSWORD: rpcpassword
172153
BITCOIND_WALLET: default
173-
BRIDGE_WALLET_1: bridge_0
174-
BRIDGE_WALLET_2: bridge_1
175-
BRIDGE_WALLET_3: bridge_2
176154
GENERATE_BLOCKS: 4 # if env is set then blocks are generated. the number is number of seconds between L1 blocks / 4
177155
container_name: strata_bitcoind
178156
volumes:
@@ -183,29 +161,6 @@ services:
183161
networks:
184162
- strata_network
185163

186-
187-
bridge-client-1:
188-
<<: *base-bridge-client
189-
container_name: bridge-client-1
190-
volumes:
191-
- ./configs/operator1.bin:/app/.secrets/xpriv.bin
192-
- ./.data/bridge-client-1:/app/.data
193-
ports:
194-
- 4781:4781
195-
profiles:
196-
- bridge
197-
198-
bridge-client-2:
199-
<<: *base-bridge-client
200-
container_name: bridge-client-2
201-
volumes:
202-
- ./configs/operator2.bin:/app/.secrets/xpriv.bin
203-
- ./.data/bridge-client-2:/app/.data
204-
ports:
205-
- 4782:4781
206-
profiles:
207-
- bridge
208-
209164
networks:
210165
strata_network:
211166
driver: bridge

0 commit comments

Comments
 (0)