From 4b70b01b58b970158dbb2b1215128b36bea23f2d Mon Sep 17 00:00:00 2001 From: Phil Date: Fri, 30 Dec 2022 12:31:16 +0100 Subject: [PATCH] =?UTF-8?q?=E2=80=9Efirefox-sync/docker-compose.yml?= =?UTF-8?q?=E2=80=9C=20hinzuf=C3=BCgen?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- firefox-sync/docker-compose.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 firefox-sync/docker-compose.yml 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