* 'master' of https://github.com/tborychowski/self-hosted-cookbook:
  add flame
  Update firefox-sync.md
  firefox sync tutorial, formatting
This commit is contained in:
Tomasz Borychowski
2022-04-24 23:52:59 +01:00
4 changed files with 85 additions and 23 deletions

31
apps/dashboard/flame.md Normal file
View File

@@ -0,0 +1,31 @@
# Flame
- no-code configuration!
- clear UI and configurable (themes, custom CSS)
- nice features: app list, bookmark list
- add bookmark is not linkable (not possible to automate adding bookmarks)
<br>
- [Github repo](https://github.com/pawelmalak/flame)
![Screenshot](flame.png)
## docker-compose.yml
```yml
---
version: '3.6'
services:
flame:
image: pawelmalak/flame
container_name: flame
restart: unless-stopped
ports:
- 5005:5005
environment:
- PASSWORD=admin123
volumes:
- ./data:/app/data
- /var/run/docker.sock:/var/run/docker.sock # optional but required for Docker integration
```

BIN
apps/dashboard/flame.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 101 KiB

View File

@@ -1,12 +1,13 @@
# Firefox Sync Server
Run-Your-Own Firefox Sync Server.
I couldn't make it fully work with MacOS & iOS.
Run-Your-Own Firefox Sync Server. I couldn't make it fully work with MacOS & iOS.<br>
Maybe this [tutorial](https://homegrowntechie.com/self-host-your-browser-data/) will work, but I haven't tried that yet.
<br>
- [Github repo](https://github.com/mozilla-services/syncserver)
- [HowTo](https://mozilla-services.readthedocs.io/en/latest/howtos/run-sync-1.5.html)
- [Step-by-step Tutorial](https://homegrowntechie.com/self-host-your-browser-data/)
## docker-compose.yml
@@ -14,21 +15,21 @@
---
version: '3'
services:
firefox-sync:
image: mozilla/syncserver:latest
container_name: firefox-sync
restart: unless-stopped
environment:
- TZ=Europe/Dublin
- SYNCSERVER_PUBLIC_URL=http://localhost:5000
- SYNCSERVER_SECRET=0123123123123123123123123123123
- SYNCSERVER_SQLURI=sqlite:////data/syncserver.db
- SYNCSERVER_BATCH_UPLOAD_ENABLED=true
- SYNCSERVER_FORCE_WSGI_ENVIRON=false
ports:
- "3000:5000"
volumes:
- ./data:/data
firefox-sync:
image: mozilla/syncserver:latest
container_name: firefox-sync
restart: unless-stopped
environment:
- TZ=Europe/Dublin
- SYNCSERVER_PUBLIC_URL=http://localhost:5000
- SYNCSERVER_SECRET=0123123123123123123123123123123
- SYNCSERVER_SQLURI=sqlite:////data/syncserver.db
- SYNCSERVER_BATCH_UPLOAD_ENABLED=true
- SYNCSERVER_FORCE_WSGI_ENVIRON=false
ports:
- "3000:5000"
volumes:
- ./data:/data
```
## Tips & Tricks