diff --git a/firefox-sync/docker-compose.yml b/firefox-sync/docker-compose.yml new file mode 100644 index 0000000..91a9e1e --- /dev/null +++ b/firefox-sync/docker-compose.yml @@ -0,0 +1,16 @@ +version: "3.7" +services: + web: + image: mozilla/syncserver:latest + ports: + - 6006:6006 + environment: + - SYNCSERVER_PUBLIC_URL=https://example.org + - SYNCSERVER_SECRET=Insert_SECRET + - SYNCSERVER_SQLURI=sqlite:////data/syncserver.db + - SYNCSERVER_BATCH_UPLOAD_ENABLED=true + - SYNCSERVER_FORCE_WSGI_ENVIRON=true + - PORT=6006 + volumes: + - ./data:/data + restart: always \ No newline at end of file