Skip to content

Commit

Permalink
add execution engine endpoints to docker ports (hyperledger#3575)
Browse files Browse the repository at this point in the history
* add execution engine endpoints to docker ports

Signed-off-by: garyschulte <garyschulte@gmail.com>
  • Loading branch information
garyschulte authored and frankisawesome committed Mar 16, 2022
1 parent 162339a commit 8ad750e
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 4 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
- Execution layer (The Merge):
- Execution specific RPC endpoint [[#3378](https://github.com/hyperledger/besu/issues/3378)
- Adds JWT authentication to Engine APIs
- Supports kiln V2.1 spec
- Tracing APIs
- new API methods: trace_rawTransaction, trace_get, trace_callMany
- added revertReason to trace APIs including: trace_transaction, trace_get, trace_call, trace_callMany, and trace_rawTransaction
Expand Down
4 changes: 3 additions & 1 deletion docker/graalvm/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,10 @@ COPY --chown=besu:besu besu /opt/besu/
# 8545 HTTP JSON-RPC
# 8546 WS JSON-RPC
# 8547 HTTP GraphQL
# 8550 HTTP ENGINE JSON-RPC
# 8551 WS ENGINE JSON-RPC
# 30303 P2P
EXPOSE 8545 8546 8547 30303
EXPOSE 8545 8546 8547 8550 8551 30303

# defaults for host interfaces
ENV BESU_RPC_HTTP_HOST 0.0.0.0
Expand Down
4 changes: 3 additions & 1 deletion docker/openjdk-11-debug/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,12 @@ COPY --chown=besu:besu besu /opt/besu/
# 8545 HTTP JSON-RPC
# 8546 WS JSON-RPC
# 8547 HTTP GraphQL
# 8550 HTTP ENGINE JSON-RPC
# 8551 WS ENGINE JSON-RPC
# 9545 Metrics
# 1098 JMX / JMX-RMI
# 30303 P2P
EXPOSE 5005 8545 8546 8547 9545 1098 30303
EXPOSE 5005 8545 8546 8547 8550 8551 9545 1098 30303

# defaults for host interfaces
ENV BESU_RPC_HTTP_HOST 0.0.0.0
Expand Down
4 changes: 3 additions & 1 deletion docker/openjdk-11/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,10 @@ COPY --chown=besu:besu besu /opt/besu/
# 8545 HTTP JSON-RPC
# 8546 WS JSON-RPC
# 8547 HTTP GraphQL
# 8550 HTTP ENGINE JSON-RPC
# 8551 WS ENGINE JSON-RPC
# 30303 P2P
EXPOSE 8545 8546 8547 30303
EXPOSE 8545 8546 8547 8550 8551 30303

# defaults for host interfaces
ENV BESU_RPC_HTTP_HOST 0.0.0.0
Expand Down
4 changes: 3 additions & 1 deletion docker/openjdk-latest/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,10 @@ COPY --chown=besu:besu besu /opt/besu/
# 8545 HTTP JSON-RPC
# 8546 WS JSON-RPC
# 8547 HTTP GraphQL
# 8550 HTTP ENGINE JSON-RPC
# 8551 WS ENGINE JSON-RPC
# 30303 P2P
EXPOSE 8545 8546 8547 30303
EXPOSE 8545 8546 8547 8550 8551 30303

# defaults for host interfaces
ENV BESU_RPC_HTTP_HOST 0.0.0.0
Expand Down

0 comments on commit 8ad750e

Please sign in to comment.