mirror of
https://github.com/Haxxnet/Compose-Examples
synced 2024-11-27 22:11:12 +00:00
add libreddit
This commit is contained in:
parent
28d5e37906
commit
4ea25291c6
|
@ -131,6 +131,7 @@ docker compose up
|
|||
- [Fail2ban](examples/fail2ban) - Fail2ban is an intrusion prevention software framework. Written in the Python programming language, it is designed to prevent against brute-force attacks.
|
||||
- [Tor-Browser](examples/tor-browser) - Running a Tor browser instance on any headless server.
|
||||
- [Firefox](examples/firefox) - Firefox by linuxserver.io allows you to run the popular Firefox web broser on a remote server.
|
||||
- [Libreddit](examples/libreddit) - Libreddit is a portmanteau of "libre" (meaning freedom) and "Reddit". It is a private front-end like Invidious but for Reddit. Browse the coldest takes of r/unpopularopinion without being tracked.
|
||||
|
||||
### Internet of Things / Smart Home
|
||||
- [Home Assistant](examples/homeassistant) - Open source home automation that puts local control and privacy first. Powered by a worldwide community of tinkerers and DIY enthusiasts. Perfect to run on a Raspberry Pi or a local server.
|
||||
|
|
3
examples/libreddit/README.md
Normal file
3
examples/libreddit/README.md
Normal file
|
@ -0,0 +1,3 @@
|
|||
# References
|
||||
|
||||
- https://github.com/libreddit/libreddit
|
17
examples/libreddit/docker-compose.yml
Normal file
17
examples/libreddit/docker-compose.yml
Normal file
|
@ -0,0 +1,17 @@
|
|||
version: "3.8"
|
||||
|
||||
services:
|
||||
libreddit-web:
|
||||
image: libreddit/libreddit
|
||||
container_name: libreddit
|
||||
hostname: libreddit
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- 8080:8080
|
||||
#labels:
|
||||
# - traefik.enable=true
|
||||
# - traefik.http.routers.libreddit.rule=Host(`libreddit.example.com`)
|
||||
# - traefik.http.services.libreddit.loadbalancer.server.port=8080
|
||||
# - traefik.docker.network=proxy
|
||||
# # Part for optional traefik middlewares
|
||||
# - traefik.http.routers.libreddit.middlewares=local-ipwhitelist@file,basic-auth@file
|
Loading…
Reference in New Issue
Block a user