mirror of
https://github.com/johannesjo/super-productivity.git
synced 2026-01-22 18:30:09 +00:00
23 lines
697 B
YAML
23 lines
697 B
YAML
services:
|
|
# Super Productivity app
|
|
app:
|
|
image: johannesjo/super-productivity:latest
|
|
ports:
|
|
- '8080:80'
|
|
environment:
|
|
# Pre-configured defaults for easier setup
|
|
WEBDAV_BASE_URL: ${WEBDAV_BASE_URL:-http://localhost:2345/}
|
|
WEBDAV_USERNAME: ${WEBDAV_USERNAME:-admin}
|
|
WEBDAV_SYNC_FOLDER_PATH: ${WEBDAV_SYNC_FOLDER_PATH:-/}
|
|
SYNC_INTERVAL: ${SYNC_INTERVAL:-15}
|
|
IS_COMPRESSION_ENABLED: ${IS_COMPRESSION_ENABLED:-true}
|
|
IS_ENCRYPTION_ENABLED: ${IS_ENCRYPTION_ENABLED:-false}
|
|
|
|
# WebDAV sync server
|
|
webdav:
|
|
image: hacdias/webdav:latest
|
|
ports:
|
|
- '2345:2345'
|
|
volumes:
|
|
- ./webdav.yaml:/config.yml:ro
|
|
- ./data:/data
|