26 lines
581 B
YAML
26 lines
581 B
YAML
version: '3.9'
|
|
|
|
services:
|
|
radicale:
|
|
image: tomsquest/docker-radicale:latest
|
|
container_name: radicale
|
|
restart: unless-stopped
|
|
ports:
|
|
- "5232:5232"
|
|
volumes:
|
|
- radicale_data:/data
|
|
- radicale_config:/config
|
|
- 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:
|
|
radicale_data:
|
|
radicale_config:
|
|
radicale_logs:
|