Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,6 @@ COPY --from=builder /optimum-gateway/LICENSE /optimum-gateway/NOTICE /optimum-ga

# USER gateway

EXPOSE 33212 33213 48123
EXPOSE 33212/tcp 33213/udp 48123/tcp

ENTRYPOINT ["/optimum-gateway"]
6 changes: 3 additions & 3 deletions docker-compose-local.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ services:
networks:
- gateway_cluster
ports:
- "33212:33212"
- "33213:33213"
- "48123:48123"
- "33212:33212/tcp"
- "33213:33213/udp"
- "48123:48123/tcp"
Comment thread
swarna1101 marked this conversation as resolved.
volumes:
- "./config:/app/config:ro"
- "./mump2p/data/mump2p/:/tmp/mump2p"
Expand Down
6 changes: 3 additions & 3 deletions docker-compose-sidecar.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,9 @@ services:
networks:
- mump2p_cluster
ports:
- "33212:33212" # libp2p port
- "33213:33213" # opt port
- "48123:48123" # telemetry + API
- "33212:33212/tcp" # libp2p
- "33213:33213/udp" # mump2p QUIC
- "48123:48123/tcp" # telemetry + API
volumes:
- "./config:/app/config:ro"
- "./mump2p/data/mump2p/:/tmp/mump2p" # identity_mump2p_dir in app_conf.yml must match container path
Expand Down
6 changes: 3 additions & 3 deletions integration/ethereum/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ services:
restart: unless-stopped
profiles: ["lite", "full", "geth", "nethermind", "teku", "prysm", "lighthouse", "nimbus", "lodestar"]
ports:
- "33212:33212" # libp2p port (CL clients connect here)
- "43213:43213" # mump2p agent port
- "48123:48123" # Telemetry/metrics port
- "33212:33212/tcp" # libp2p (CL clients connect here)
- "43213:43213/udp" # mump2p QUIC
- "48123:48123/tcp" # telemetry/metrics
volumes:
- ./config:/app/config # Config directory (must contain app_conf.yml)
- ./identity/libp2p:/tmp/libp2p # Persistent libp2p identity
Expand Down
Loading