Skip to content

Commit

Permalink
Merge pull request #3 from theDepart3d/master
Browse files Browse the repository at this point in the history
added docker-compose.yml
  • Loading branch information
porjo authored Mar 25, 2024
2 parents 1bc217b + e229abf commit 0c81cb3
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 1 deletion.
10 changes: 9 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,15 @@

Simple webservice that takes a Rumble.com channel URL and returns an RSS feed containing a list of videos from the channel.

## Example Usage
## Example docker-compose Usage

```
docker-compose up -d
curl localhost:8080?link=https://rumble.com/mychannel
```

## Example Docker Usage

```
docker pull ghcr.io/porjo/rumblerss:latest
Expand Down
13 changes: 13 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
version: "3.8"

services:
app:
image: ghcr.io/porjo/rumblerss:latest
container_name: rumblerss
restart: unless-stopped
# to build locally uncomment bellow and comment out the above image: ghcr.io link
# image: rumblerss
# build:
# context: .
ports:
- 8080:8080

0 comments on commit 0c81cb3

Please sign in to comment.