docker/radicale/docker-compose.yml

38 lines
606 B
YAML
Raw Normal View History

2022-10-13 07:55:57 -07:00
version: "3.7"
services:
radicale:
build:
2022-10-13 12:45:34 -07:00
context: ./build
args:
2022-10-13 07:55:57 -07:00
BUILD_UID: 1000
BUILD_GID: 1000
TAKE_FILE_OWNERSHIP: "false"
container_name: radicale
restart: unless-stopped
init: true
healthcheck:
test: curl -f http://127.0.0.1:5232 || exit 1
interval: 30s
retries: 3
# Security
read_only: true
security_opt:
- no-new-privileges:true
cap_drop:
- ALL
cap_add:
- SETUID
- SETGID
- KILL
ports:
- 5232:5232
volumes:
- ./data:/data
- ./config:/config