add firefox browser

This commit is contained in:
Dziad Borowy 2022-09-20 17:00:32 +01:00
parent b834590a66
commit d46fa217a2
3 changed files with 33 additions and 0 deletions

View File

@ -285,6 +285,7 @@ The aims is to provide a ready-to-run recipes that you can just copy, paste and
- [change-detection](apps/other/change-detection.md)
- [Cockpit](apps/other/cockpit.md)
- [Code server](apps/other/code.md)
- [Firefox](apps/other/firefox.md)
- [Firefox sync server](apps/other/firefox-sync.md)
- [LanguageTool server](apps/other/language-tool.md)
- [Ntfy](apps/other/ntfy.md)

29
apps/other/firefox.md Normal file
View File

@ -0,0 +1,29 @@
# Firefox
It's a browser inside a browser!
- Very useful when you need to check a site that is blocked by your provider (work/school) (assuming that the firefox instance you host is not blocked).
- a bit slow, but it works!
<br>
- [Github repo](https://github.com/linuxserver/docker-firefox)
## docker-compose.yml
```yml
---
services:
firefox:
image: lscr.io/linuxserver/firefox:latest
container_name: firefox
shm_size: "1gb"
restart: unless-stopped
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/Dublin
ports:
- 3123:3000
volumes:
- ./config:/config
```

View File

@ -4,6 +4,9 @@ A self-hosted notification server (like pushover).
- has mobile apps for ios and android
- interesting conceptually (simple pub-sub)
- very easy to use (from curl to php)
- notifications arrive promptly, within seconds (1 - 10) (not as instant as e.g. pushover)
- sometimes apps need to be restarted to show notifications (sometimes a notification shows up in notification center, but not in the app)
- no sync between clients - i.e. the same notification must be marked as read or dismissed in all subscribers (in pushover, when I read one on my phone - it shows as read on laptop)
<br>