arreglado fallos server

This commit is contained in:
2025-10-21 23:43:57 +02:00
parent cef52e89bb
commit 6d14ca785b
+8 -8
View File
@@ -2,24 +2,24 @@ version: '3.9'
services: services:
radicale: radicale:
image: tomsquest/docker-radicale:3.5.7.0 image: tomsquest/docker-radicale:latest
container_name: radicale container_name: radicale
restart: unless-stopped restart: unless-stopped
ports: ports:
- "5232:5232" - "5232:5232"
environment:
- RADICALE_CONFIG=/config/config
command: ["radicale", "--config", "/config/config"]
volumes: volumes:
# Volumenes nativos de Docker para persistencia
- radicale_data:/data - radicale_data:/data
- radicale_config:/config - radicale_config:/config
- radicale_logs:/var/log/radicale - radicale_logs:/var/log/radicale
environment:
- RADICALE_CONFIG=/config/config
- TAKE_FILE_OWNERSHIP=true
# opcional: UID/GID si lo necesitas
# - UID=1000
# - GID=1000
command: ["/venv/bin/radicale", "--config", "/config/config"]
volumes: volumes:
radicale_data: radicale_data:
driver: local
radicale_config: radicale_config:
driver: local
radicale_logs: radicale_logs:
driver: local