Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: bgpkit/bgpkit-broker
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.7.6
Choose a base ref
...
head repository: bgpkit/bgpkit-broker
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref
  • 5 commits
  • 6 files changed
  • 1 contributor

Commits on Nov 1, 2024

  1. delete flyio cd config

    future deployment should be manually triggered
    digizeph committed Nov 1, 2024
    Copy the full SHA
    27d93d0 View commit details

Commits on Jan 8, 2025

  1. Copy the full SHA
    097e7d7 View commit details
  2. Copy the full SHA
    4c35343 View commit details
  3. Copy the full SHA
    295a8b2 View commit details
  4. Copy the full SHA
    67071ab View commit details
Showing with 4,700 additions and 20 deletions.
  1. +0 −18 .github/workflows/fly-deploy.yml
  2. +1 −1 .gitignore
  3. +4,685 −0 Cargo.lock
  4. +1 −1 Dockerfile
  5. +6 −0 README.md
  6. +7 −0 docker-compose.yaml
18 changes: 0 additions & 18 deletions .github/workflows/fly-deploy.yml

This file was deleted.

2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/target
Cargo.lock
# Cargo.lock
.idea

*.sqlite3*
4,685 changes: 4,685 additions & 0 deletions Cargo.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# select build image
FROM rust:1.80.1 as build
FROM rust:1.83.0 AS build

# create a new empty shell project
RUN USER=root cargo new --bin my_project
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -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
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