|
| 1 | +version: '3' |
| 2 | + |
| 3 | +x-resident: &resident |
| 4 | + restart: unless-stopped |
| 5 | + user: nobody |
| 6 | + logging: |
| 7 | + driver: json-file |
| 8 | + options: |
| 9 | + max-size: 128m |
| 10 | + max-file: 4 |
| 11 | + |
| 12 | +services: |
| 13 | + op-geth: |
| 14 | + <<: *resident |
| 15 | + image: ghcr.io/oasysgames/oasys-op-geth:latest |
| 16 | + entrypoint: geth |
| 17 | + command: > |
| 18 | + --http |
| 19 | + --http.corsdomain='*' |
| 20 | + --http.vhosts='*' |
| 21 | + --http.addr=0.0.0.0 |
| 22 | + --http.port=8545 |
| 23 | + --http.api=web3,eth,net,engine |
| 24 | + --ws |
| 25 | + --ws.origins='*' |
| 26 | + --ws.addr=0.0.0.0 |
| 27 | + --ws.port=8546 |
| 28 | + --ws.api=debug,eth,net,engine |
| 29 | + --syncmode=full |
| 30 | + --gcmode=archive |
| 31 | + --cache=4096 |
| 32 | + --nodiscover |
| 33 | + --maxpeers=0 |
| 34 | + --networkid=$OP_CHAIN_ID |
| 35 | + --authrpc.vhosts='*' |
| 36 | + --authrpc.addr=0.0.0.0 |
| 37 | + --authrpc.port=8551 |
| 38 | + --authrpc.jwtsecret=/assets/jwt.txt |
| 39 | + --txpool.pricelimit=0 |
| 40 | + volumes: |
| 41 | + - ./assets:/assets:ro |
| 42 | + - ./data/op-geth:/home/nobody/.ethereum |
| 43 | + ports: |
| 44 | + - $OP_ETH_RPC_HTTP_PORT:8545/tcp |
| 45 | + - $OP_ETH_RPC_WS_PORT:8546/tcp |
| 46 | + |
| 47 | + op-node: |
| 48 | + <<: *resident |
| 49 | + image: ghcr.io/oasysgames/oasys-opstack/op-node:latest |
| 50 | + entrypoint: op-node |
| 51 | + command: > |
| 52 | + --l1=$L1_ETH_RPC_HTTP |
| 53 | + --l1.rpckind=basic |
| 54 | + --l1.epoch-poll-interval=0 |
| 55 | + --l1.http-poll-interval=15s |
| 56 | + --l2=$OP_ENGINE_RPC |
| 57 | + --l2.jwt-secret=/assets/jwt.txt |
| 58 | + --rollup.config=/data/rollup.json |
| 59 | + --sequencer.enabled |
| 60 | + --sequencer.l1-confs=5 |
| 61 | + --verifier.l1-confs=5 |
| 62 | + --rpc.enable-admin |
| 63 | + --rpc.addr=0.0.0.0 |
| 64 | + --rpc.port=8547 |
| 65 | + --rpc.admin-state=/data/admin-state |
| 66 | + --snapshotlog.file=/data/snapshotlog |
| 67 | + --p2p.disable |
| 68 | + volumes: |
| 69 | + - ./assets:/assets:ro |
| 70 | + - ./data/op-node:/data |
| 71 | + links: |
| 72 | + - op-geth |
| 73 | + |
| 74 | + op-batcher: |
| 75 | + <<: *resident |
| 76 | + image: ghcr.io/oasysgames/oasys-opstack/op-batcher:latest |
| 77 | + entrypoint: op-batcher |
| 78 | + command: > |
| 79 | + --l1-eth-rpc=$L1_ETH_RPC_HTTP |
| 80 | + --l2-eth-rpc=$OP_ETH_RPC_HTTP |
| 81 | + --rollup-rpc=$OP_ROLLUP_RPC |
| 82 | + --private-key=$OP_BATCHER_KEY |
| 83 | + --num-confirmations=5 |
| 84 | + --resubmission-timeout=60s |
| 85 | + --txmgr.receipt-query-interval=15s |
| 86 | + links: |
| 87 | + - op-geth |
| 88 | + - op-node |
| 89 | + |
| 90 | + op-proposer: |
| 91 | + <<: *resident |
| 92 | + image: ghcr.io/oasysgames/oasys-opstack/op-proposer:latest |
| 93 | + entrypoint: op-proposer |
| 94 | + command: > |
| 95 | + --l1-eth-rpc=$L1_ETH_RPC_HTTP |
| 96 | + --rollup-rpc=$OP_ROLLUP_RPC |
| 97 | + --l2oo-address=$OP_L2OO_ADDR |
| 98 | + --private-key=$OP_PROPOSER_KEY |
| 99 | + --allow-non-finalized=true |
| 100 | + --num-confirmations=5 |
| 101 | + --resubmission-timeout=60s |
| 102 | + --txmgr.receipt-query-interval=15s |
| 103 | + links: |
| 104 | + - op-node |
| 105 | + |
| 106 | + # message-relayer: TODO |
0 commit comments