Skip to content
Merged
Show file tree
Hide file tree
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
6 changes: 3 additions & 3 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:

env:
REGISTRY: ghcr.io
IMAGE_NAME: recceiver
IMAGE_NAME: ${{ github.repository }}/recceiver

jobs:
build-and-push-image:
Expand All @@ -20,7 +20,7 @@ jobs:
runs-on: ubuntu-latest
defaults:
run:
working-directory: server
working-directory: ./server
steps:
- uses: actions/checkout@v4
- name: Log in to the Container registry
Expand All @@ -39,7 +39,7 @@ jobs:
- name: Build and push Docker image
uses: docker/build-push-action@v5
with:
context: .
context: ./server
push: true
platforms: linux/amd64,linux/arm64
tags: ${{ steps.meta.outputs.tags }}
Expand Down
8 changes: 8 additions & 0 deletions server/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,14 @@ Application for talking between IOCs (via [reccaster](../client)) and ChannelFin

Written using [twistd](https://twisted.org/).

## Docker

There is an example docker compose script which runs recceiver and channelfinder together.

```bash
docker compose up
```

## Formatting and Linting

Recceiver uses [ruff](https://docs.astral.sh/ruff/) for formatting and linting. See website for installation instructions.
Expand Down