16 lines
420 B
YAML
16 lines
420 B
YAML
|
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
|