Skip to content
This repository has been archived by the owner on Jun 20, 2024. It is now read-only.

Commit

Permalink
exposing grpc port and updating readme with docker instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
kant committed Oct 11, 2023
1 parent f7580fb commit 2711643
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ COPY --from=builder /app/config /config
COPY --from=builder /app/entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh

EXPOSE 13522 13523
EXPOSE 13522 13523 13524

ENTRYPOINT ["/entrypoint.sh"]

25 changes: 25 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,3 +70,28 @@ OPTIONS:
}
}
```

## Building Docker Image

To simplify the deployment process, you may utilize Docker to create an isolated environment to run mev-commit.

- Build the Docker Image:
Navigate to the project root directory (where your Dockerfile is located) and run:

```
docker build -t mev-commit:latest .
```
- Running with Docker Compose:

```
docker-compose up --build
```

- Stopping the Service:

```
docker-compose down
```



0 comments on commit 2711643

Please sign in to comment.