1
0
mirror of https://github.com/tiyn/wiki.git synced 2025-10-10 18:01:22 +02:00

libreddit: added libreddit as reddit alternative

This commit is contained in:
TiynGER
2021-05-04 23:45:14 +02:00
parent b7af9c81b1
commit 280ddc75d6
5 changed files with 42 additions and 2 deletions

View File

@@ -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
```