mirror of
https://github.com/johannesjo/super-productivity.git
synced 2026-01-23 02:36:05 +00:00
65 lines
1.7 KiB
YAML
65 lines
1.7 KiB
YAML
services:
|
|
# SuperSync server for E2E testing
|
|
# Start with: docker compose up -d supersync
|
|
# Required for @supersync e2e tests
|
|
supersync:
|
|
build:
|
|
context: .
|
|
dockerfile: packages/super-sync-server/Dockerfile.test
|
|
ports:
|
|
- '1900:1900'
|
|
environment:
|
|
- PORT=1900
|
|
- TEST_MODE=true
|
|
- TEST_MODE_CONFIRM=yes-i-understand-the-risks
|
|
- JWT_SECRET=e2e-test-secret-minimum-32-chars-long-for-security
|
|
- CORS_ORIGINS=*
|
|
- DATA_DIR=/data
|
|
tmpfs:
|
|
- /data # In-memory SQLite for test isolation
|
|
healthcheck:
|
|
test:
|
|
[
|
|
'CMD',
|
|
'wget',
|
|
'--quiet',
|
|
'--tries=1',
|
|
'--spider',
|
|
'http://localhost:1900/health',
|
|
]
|
|
interval: 5s
|
|
timeout: 5s
|
|
retries: 3
|
|
start_period: 10s
|
|
|
|
# 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
|
|
- webdav_data:/data
|
|
healthcheck:
|
|
test: ['CMD', 'wget', '--quiet', '--tries=1', '--spider', 'http://localhost:2345/']
|
|
interval: 10s
|
|
timeout: 5s
|
|
retries: 3
|
|
start_period: 10s
|
|
|
|
volumes:
|
|
webdav_data:
|