Skip to content
Open
Changes from all commits
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
10 changes: 5 additions & 5 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ services:
dockerfile: ${CLIENT:-geth}/Dockerfile
restart: unless-stopped
ports:
- "8545:8545" # RPC
- "8546:8546" # websocket
- "7301:6060" # metrics
- "30303:30303" # P2P TCP
- "30303:30303/udp" # P2P UDP
- "8545:8545" # RPC
- "8546:8546" # websocket
- "7301:6060" # metrics
# - "30303:30303" # P2P TCP (commented out for security: avoid public exposure by default)
# - "30303:30303/udp" # P2P UDP (commented out for security: avoid public exposure by default)
command: ["bash", "./execution-entrypoint"]
volumes:
- ${HOST_DATA_DIR}:/data
Expand Down