Add initial configuration files and Docker setup for Radicale
This commit is contained in:
@@ -0,0 +1,2 @@
|
||||
data
|
||||
postgres_data
|
||||
@@ -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
|
||||
@@ -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
|
||||
Reference in New Issue
Block a user