„firefox-sync/docker-compose.yml“ hinzufügen

This commit is contained in:
Phil 2022-12-30 12:31:16 +01:00
parent 87df5d9f4d
commit 4b70b01b58

View file

@ -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