Skip to content

Commit

Permalink
add docker-compose deployment docs
Browse files Browse the repository at this point in the history
  • Loading branch information
digizeph committed Jan 8, 2025
1 parent 295a8b2 commit 67071ab
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -355,6 +355,12 @@ To run in deattached mode (as a service):
docker run -d -p 40064:40064 bgpkit/bgpkit-broker:latest
```

To run as a service using `docker-compose`:

``` bash
docker-compose up -d
```

You can also build the Docker image from the source code:

```bash
Expand Down
7 changes: 7 additions & 0 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
version: "3.8"
services:
bgpkit-broker:
image: bgpkit/bgpkit-broker:latest
ports:
- "40064:40064"
restart: unless-stopped

0 comments on commit 67071ab

Please sign in to comment.