Update firefox-sync.md

This commit is contained in:
Dziad Borowy 2022-03-23 11:23:31 +00:00 committed by GitHub
parent 9aa4c4d253
commit aa5db29c60
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -15,21 +15,21 @@
--- ---
version: '3' version: '3'
services: services:
firefox-sync: firefox-sync:
image: mozilla/syncserver:latest image: mozilla/syncserver:latest
container_name: firefox-sync container_name: firefox-sync
restart: unless-stopped restart: unless-stopped
environment: environment:
- TZ=Europe/Dublin - TZ=Europe/Dublin
- SYNCSERVER_PUBLIC_URL=http://localhost:5000 - SYNCSERVER_PUBLIC_URL=http://localhost:5000
- SYNCSERVER_SECRET=0123123123123123123123123123123 - SYNCSERVER_SECRET=0123123123123123123123123123123
- SYNCSERVER_SQLURI=sqlite:////data/syncserver.db - SYNCSERVER_SQLURI=sqlite:////data/syncserver.db
- SYNCSERVER_BATCH_UPLOAD_ENABLED=true - SYNCSERVER_BATCH_UPLOAD_ENABLED=true
- SYNCSERVER_FORCE_WSGI_ENVIRON=false - SYNCSERVER_FORCE_WSGI_ENVIRON=false
ports: ports:
- "3000:5000" - "3000:5000"
volumes: volumes:
- ./data:/data - ./data:/data
``` ```
## Tips & Tricks ## Tips & Tricks