1
0
mirror of https://github.com/tiyn/wiki.git synced 2026-07-26 04:21:34 +02:00
Files
wiki/wiki/docker/spikecodes_-_libreddit.md

885 B
Executable File
Raw Blame History

spikecodes libreddit

This is a Docker container for the alternative reddit frontend libreddit. The official container and documentation was made by spikecodes.

Setup

Create the file rebuild.sh. Change the settings according to your needs and run ./rebuild.sh afterward.

Ports

Set the following ports with the -p tag.

Container Port Recommended outside port Protocol Description
8080 8080 TCP WebUI

rebuild.sh

#!/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