Skip to content

Commit

Permalink
Merge pull request julianorchard#10 from julianorchard/docker
Browse files Browse the repository at this point in the history
feat: add docker-compose.yaml and update docs
  • Loading branch information
julianorchard authored Jul 8, 2023
2 parents 7044e9e + eb3ab03 commit c97e1a8
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,15 @@ Both of these provide RSS feeds, which are on basically every page plus `/rss`:
pip install -i requirements.txt
```

Alternatively, use Docker compose:

```sh
docker compose up
```

This will create a persistent volume for the storage of the _hist files, too (if
run without Docker, these are put in `$XDG_CACHE_HOME`).

### Configuration

Edit the `config.yaml` file:
Expand Down
12 changes: 12 additions & 0 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
version: '3.8'

services:
rss-ntfy:
build:
context: .
volumes:
- histfiles:/root/:rw

volumes:
histfiles:

0 comments on commit c97e1a8

Please sign in to comment.