Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
zjg555543 committed Dec 5, 2024
1 parent 9680c5c commit 64fa728
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion test/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ RUN_DOCKER_POOL_MANAGER := $(DOCKER_COMPOSE) up -d $(DOCKER_POOL_MANAGER)
RUN_DOCKER_SIGNER := $(DOCKER_COMPOSE) up -d $(DOCKER_SIGNER)
RUN_DOCKER_DS := $(DOCKER_COMPOSE) up -d $(DOCKER_DS)

STOP := $(DOCKER_COMPOSE) down --remove-orphans; rm -rf sqlite
STOP := $(DOCKER_COMPOSE) down --remove-orphans; rm -rf data

.PHONY: run
run: ## Runs a full node
Expand Down
7 changes: 5 additions & 2 deletions test/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ services:
container_name: xlayer-seqs
image: zjg555543/cdk:v0.4.0-beta10
volumes:
- ./sqlite/seqs:/tmp/cdk
- ./data/seqs:/tmp/cdk
- ./keystore/da.permit.keystore:/pk/da.permit.keystore
- ./keystore/sequencer.keystore:/pk/sequencer.keystore
- ./config/cdk.config.toml:/app/config.toml
Expand All @@ -37,7 +37,7 @@ services:
ports:
- 50081:50081
volumes:
- ./sqlite/agg:/tmp/cdk
- ./data/agg:/tmp/cdk
- ./keystore/aggregator.keystore:/pk/aggregator.keystore
- ./config/cdk.config.toml:/app/config.toml
- ./config/test.genesis.config.json:/app/genesis.json
Expand Down Expand Up @@ -105,6 +105,7 @@ services:
- 6900:6900
- 9092:9095
volumes:
- ./data/seq/:/home/erigon/data/
- ./config/test.erigon.seq.config.yaml:/usr/src/app/config.yaml
- ./config/dynamic-mynetwork-allocs.json:/usr/src/app/dynamic-mynetwork-allocs.json
- ./config/dynamic-mynetwork-chainspec.json:/usr/src/app/dynamic-mynetwork-chainspec.json
Expand All @@ -122,6 +123,7 @@ services:
- 6901:6900
- 9091:9095
volumes:
- ./data/rpc/:/home/erigon/data/
- ./config/test.erigon.rpc.config.yaml:/usr/src/app/config.yaml
- ./config/dynamic-mynetwork-allocs.json:/usr/src/app/dynamic-mynetwork-allocs.json
- ./config/dynamic-mynetwork-chainspec.json:/usr/src/app/dynamic-mynetwork-chainspec.json
Expand Down Expand Up @@ -346,6 +348,7 @@ services:
ports:
- 7900:7900
volumes:
- ./data/ds/:/home/dsrelay/
- ./config/ds-config.toml:/app/config.toml
command:
- "/bin/sh"
Expand Down

0 comments on commit 64fa728

Please sign in to comment.