Add initial configuration files and Docker setup for Radicale

This commit is contained in:
2024-11-24 22:45:02 +01:00
parent 5c2eb0b88b
commit 2125049f68
3 changed files with 36 additions and 0 deletions
+2
View File
@@ -0,0 +1,2 @@
data
postgres_data
+16
View File
@@ -0,0 +1,16 @@
[server]
# Listen on all interfaces
hosts = 0.0.0.0:5232
[auth]
# Authentication type
type = none
[storage]
# Storage backend (default: filesystem)
type = multifilesystem
filesystem_folder = /data
[logging]
# Logging level: debug, info, warning, error, critical
level = info
+18
View File
@@ -0,0 +1,18 @@
version: '3.8'
services:
radicale:
image: tomsquest/docker-radicale
container_name: radicale
ports:
- "5232:5232"
volumes:
- ./data:/data
- ./config:/config
networks:
- radicale_network
networks:
radicale_network:
driver: bridge