mirror of https://github.com/tiyn/wiki
parent
b7af9c81b1
commit
280ddc75d6
@ -0,0 +1,24 @@
|
||||
# spikecodes - libreddit
|
||||
|
||||
The official container and documentation was made by [spikecodes](https://github.com/spikecodes/libreddit).
|
||||
|
||||
## Ports
|
||||
|
||||
Set the following ports with the -p tag.
|
||||
|
||||
| Container Port | Recommended outside port | Protocol | Description |
|
||||
| -------------- | ------------------------ | -------- | ----------- |
|
||||
| `8080` | `8080` | TCP | WebUI |
|
||||
|
||||
## Rebuild
|
||||
|
||||
```shell
|
||||
#!/bin/sh
|
||||
docker stop libreddit
|
||||
docker rm libreddit
|
||||
docker pull spikecodes/libreddit:latest
|
||||
docker run --name libreddit \
|
||||
--restart unless-stopped \
|
||||
-p 8080:8080 \
|
||||
-d spikecodes/libreddit:latest
|
||||
```
|
@ -0,0 +1,15 @@
|
||||
# LibReddit
|
||||
|
||||
[LibReddit](https://github.com/spikecodes/libreddit) is an alternative frontend for
|
||||
Reddit.
|
||||
|
||||
## Server
|
||||
|
||||
A server can be setup via docker with the [spikecodes image](./docker-images/spikecodes_-_libreddit.md).
|
||||
|
||||
## Automatic redirect from Reddit
|
||||
|
||||
There are various addons to redirect from Reddit links to your (or a public)
|
||||
libreddit instance.
|
||||
For Firefox for example there is
|
||||
[privacy redirect](https://addons.mozilla.org/en-US/firefox/addon/privacy-redirect/).
|
Loading…
Reference in new issue