From d46fa217a2f9319e35a4a9bb402a3a1cb8fe0b62 Mon Sep 17 00:00:00 2001 From: Dziad Borowy Date: Tue, 20 Sep 2022 17:00:32 +0100 Subject: [PATCH] add firefox browser --- README.md | 1 + apps/other/firefox.md | 29 +++++++++++++++++++++++++++++ apps/other/ntfy.md | 3 +++ 3 files changed, 33 insertions(+) create mode 100644 apps/other/firefox.md diff --git a/README.md b/README.md index 88d9338..304b1ca 100644 --- a/README.md +++ b/README.md @@ -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) diff --git a/apps/other/firefox.md b/apps/other/firefox.md new file mode 100644 index 0000000..6be0e5b --- /dev/null +++ b/apps/other/firefox.md @@ -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! + +
+ +- [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 +``` diff --git a/apps/other/ntfy.md b/apps/other/ntfy.md index c27b7ce..6468afa 100644 --- a/apps/other/ntfy.md +++ b/apps/other/ntfy.md @@ -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)