Skip to content

Commit

Permalink
docs: update dockerfile comments and readme
Browse files Browse the repository at this point in the history
  • Loading branch information
Evan-Kim2028 committed Oct 14, 2024
1 parent 7e57c26 commit 2c3dd68
Showing 1 changed file with 3 additions and 8 deletions.
11 changes: 3 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,30 +53,25 @@ If you have other repositories with Docker services that need to communicate wit
version: '3'
services:
bid-sender:
image: your-bot-image
networks:
- app-network
environment:
- RPC_ENDPOINT=http://mev-commit-bidder:13523
- RPC_ENDPOINT=http://mev-commit-bidder:13524
networks:
app-network:
external: true
```
This ensures that the containers across different repositories can communicate with each other using container names, like mev-commit-bidder, for service discovery.
# Additional Notes
The mev-commit binary is downloaded during the build process from the official GitHub repository.
The containers are configured to automatically restart on failure using Docker Compose.
## Troubleshooting
# Troubleshooting
Service not starting: Check the logs using:
```bash
docker-compose logs mev-commit-bidder
```

### Logs
## Logs
To monitor the logs of the running bidder service:

```bash
Expand Down

0 comments on commit 2c3dd68

Please sign in to comment.