27 lines
727 B
YAML
27 lines
727 B
YAML
version: '3.7'
|
|
|
|
services:
|
|
ffsync:
|
|
container_name: ffsync
|
|
image: mozilla/syncserver:latest
|
|
volumes:
|
|
- ../files:/data
|
|
ports:
|
|
- 5000:5000
|
|
environment:
|
|
- SYNCSERVER_PUBLIC_URL=https://ffsync.troche.koeln:5000
|
|
- SYNCSERVER_SECRET=MjiU0DKEaaTPdot5V0GNrrgHSeQVgbka0m32hvEw3etVQCLb
|
|
- SYNCSERVER_SQLURI=sqlite:////data/syncserver.db
|
|
- SYNCSERVER_BATCH_UPLOAD_ENABLED=true
|
|
- SYNCSERVER_FORCE_WSGI_ENVIRON=true
|
|
- PORT=5000
|
|
- VIRTUAL_PORT=5000
|
|
- VIRTUAL_HOST=ffsync.troche.koeln
|
|
- LETSENCRYPT_HOST=ffsync.troche.koeln
|
|
- LETSENCRYPT_EMAIL=ariane@familie-troche.de
|
|
|
|
networks:
|
|
default:
|
|
external:
|
|
name: nginx-proxy
|