# Libreddit > An alternative private front-end to Reddit Libre + Reddit = Libreddit - πŸš€ Fast: written in Rust for blazing fast speeds and safety - ☁️ Light: no javascript, no ads, no tracking - πŸ•΅ Private: ~~all~~ most requests are proxied through the server (images are still loaded from Reddit) - πŸ”’ Safe: does not rely on Reddit's closed APIs - πŸ“± Responsive: works great on mobile! Think Invidious but for Reddit. Watch your cat videos without being watched. **Note**: Libreddit is still a WIP. ## Screenshot ![](https://i.ibb.co/SfFHDhh/image.png) ## Instances - [libreddit.spike.codes](https://libreddit.spike.codes) πŸ‡ΊπŸ‡Έ ## Deploy an Instance ### A) Manual Make sure you have [Rust](https://rust-lang.org) installed first or else `cargo` commands won't work. Libreddit uses Rocket for the web server and as of now, Rocket requires Rust Nightly. ``` rustup default nightly ``` Deploy using these commands: ``` git clone https://github.com/spikecodes/libreddit.git cd libreddit cargo run ``` ### B) Docker Deploy the Docker image of Libreddit: ``` docker run -d --name libreddit -p 8000:8000 spikecodes/libreddit ``` Deploy using a different port (in this case, port 80): ``` docker run -d --name libreddit -p 80:8000 spikecodes/libreddit ```