Skip to content

Commit

Permalink
updated docker-compose
Browse files Browse the repository at this point in the history
  • Loading branch information
Aymen-Tirchi committed Sep 18, 2023
1 parent 1b27c95 commit 9648acb
Showing 1 changed file with 32 additions and 8 deletions.
40 changes: 32 additions & 8 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,23 +47,47 @@ services:
command: go run cmd/7_Initialize_op-geth/main.go

run-op-geth:
extends:
service: common
build:
context: ./docker
dockerfile: Dockerfile.run-op-geth
volumes:
- ./op-stack-deployer:/app
working_dir: /app
networks:
- op-network
command: go run cmd/8_run_op-geth/main.go

run-op-node:
extends:
service: common
build:
context: ./docker
dockerfile: Dockerfile.run-op-node
volumes:
- ./op-stack-deployer:/app
working_dir: /app
networks:
- op-network
command: go run cmd/9_run_op-node/main.go

run-op-batcher:
extends:
service: common
build:
context: ./docker
dockerfile: Dockerfile.run-op-batcher
volumes:
- ./op-stack-deployer:/app
working_dir: /app
networks:
- op-network
command: go run cmd/10_run_op-batcher/main.go

run-op-proposer:
extends:
service: common
build:
context: ./docker
dockerfile: Dockerfile.run-op-proposer
volumes:
- ./op-stack-deployer:/app
working_dir: /app
networks:
- op-network
command: go run cmd/11_run_op-proposer/main.go

networks:
Expand Down

0 comments on commit 9648acb

Please sign in to comment.