Features: - Docker WebDAV server with docker-compose - Server configuration with .env - Project structure for Android app - Complete documentation references - MIT License Server: - bytemark/webdav Docker image - Basic authentication - Port 8080 exposed - Volume mounts for data and logs - Quick start README Android: - Project structure defined - README with setup instructions - Links to complete implementation guide Status: Server running and tested ✓ Next: Android app implementation in Android Studio
23 lines
437 B
YAML
23 lines
437 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
webdav:
|
|
image: bytemark/webdav
|
|
container_name: simple-notes-webdav
|
|
restart: unless-stopped
|
|
ports:
|
|
- "8080:80"
|
|
environment:
|
|
AUTH_TYPE: Basic
|
|
USERNAME: ${WEBDAV_USERNAME}
|
|
PASSWORD: ${WEBDAV_PASSWORD}
|
|
volumes:
|
|
- ./notes-data:/var/lib/dav/data
|
|
- ./logs:/var/log/apache2
|
|
networks:
|
|
- notes-network
|
|
|
|
networks:
|
|
notes-network:
|
|
driver: bridge
|