docker-firefox-syncserver icon indicating copy to clipboard operation
docker-firefox-syncserver copied to clipboard

Firefox Sync Server Docker image

Results 8 docker-firefox-syncserver issues
Sort by recently updated
recently updated
newest added

Running Docker on an RPi. No apparent sync. The DB file size is unchanged (61440) from fresh start. Docker compose... ``` version: "3.2" services: firefox-syncserver: image: crazymax/firefox-syncserver:latest container_name: firefox_syncserver ports:...

Very nice work, can you also do this way firefox account server?

### Behaviour #### Steps to reproduce this issue 1. Updated from v1.8.0 to latest #### Expected behaviour > Everythin should be running #### Actual behaviour > My container is crashlooping...

Hi, I'm starting "docker-firefox-syncserver" like this... `docker run -d -p 5000:5000 --name firefox_syncserver -e TZ="Europe/Paris" -e FF_SYNCSERVER_SECRET="xxxxxxxxxxx" -e FF_SYNCSERVER_FORWARDED_ALLOW_IPS="*" -e FF_SYNCSERVER_PUBLIC_URL="http://sync.domain.tld" -e force_wsgi_environ="true" -e FF_SYNCSERVER_ALLOW_NEW_USERS="true" -v $(pwd)/ff-sync:/data crazymax/firefox-syncserver:latest` I'm getting...

I accidentally left FF_SYNCSERVER_ALLOW_NEW_USERS: 'true' for a couple of months. Strangers could have used it to sync with my server. How can I check what accounts are currently linked to...

Just FYI, Mozilla released SyncStorage. Allowing you to use with your SyncServer to not only sync but also store the data on your server. Without that, if you ever delete...

:sparkles: enhancement

Adds runtime Docker support for PostgreSQL and SQLite via the FF_SYNCSERVER_SQL_DRIVER Docker build argument

### Behaviour As my Nginx server with the reverse proxy is on another machine than the docker, I'm in need of the "forwarded_allow_ips" setting set to * (or the IP...