version: '3.8' services: radicale: image: tomsquest/docker-radicale:latest container_name: vmis-radicale restart: unless-stopped # 環境變數 environment: # 設定時區 - TZ=Asia/Taipei # UID/GID (與 porsche 使用者相同) - UID=1000 - GID=1000 # 資料卷 volumes: # 配置檔 - ./config:/config:ro # 資料目錄 - ./data:/data # 埠號 ports: - "5232:5232" # 網路 networks: - vmis-network # 健康檢查 healthcheck: test: ["CMD", "curl", "-f", "http://localhost:5232/"] interval: 30s timeout: 10s retries: 3 start_period: 40s networks: vmis-network: external: true