{"id":15366871,"url":"https://github.com/cupcakearmy/docker-radicale","last_synced_at":"2025-04-15T12:33:28.466Z","repository":{"id":96682849,"uuid":"348518199","full_name":"cupcakearmy/docker-radicale","owner":"cupcakearmy","description":"Docker Radicale Image","archived":false,"fork":false,"pushed_at":"2024-08-09T12:54:04.000Z","size":98,"stargazers_count":22,"open_issues_count":0,"forks_count":6,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-03-28T20:12:12.802Z","etag":null,"topics":["caldav","carddav","docker","docker-radicale","radicale"],"latest_commit_sha":null,"homepage":"","language":"Dockerfile","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/cupcakearmy.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"github":"cupcakearmy","patreon":null,"open_collective":null,"ko_fi":null,"tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"otechie":null,"custom":null}},"created_at":"2021-03-16T23:12:50.000Z","updated_at":"2024-11-24T12:51:00.000Z","dependencies_parsed_at":null,"dependency_job_id":"58d0d5d0-f03f-4155-8110-9bf3a608f3e0","html_url":"https://github.com/cupcakearmy/docker-radicale","commit_stats":{"total_commits":17,"total_committers":2,"mean_commits":8.5,"dds":0.05882352941176472,"last_synced_commit":"ee200552834790776055563f25b7926e7890945b"},"previous_names":[],"tags_count":6,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cupcakearmy%2Fdocker-radicale","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cupcakearmy%2Fdocker-radicale/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cupcakearmy%2Fdocker-radicale/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cupcakearmy%2Fdocker-radicale/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cupcakearmy","download_url":"https://codeload.github.com/cupcakearmy/docker-radicale/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":249072285,"owners_count":21208156,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["caldav","carddav","docker","docker-radicale","radicale"],"created_at":"2024-10-01T13:20:06.071Z","updated_at":"2025-04-15T12:33:28.407Z","avatar_url":"https://github.com/cupcakearmy.png","language":"Dockerfile","funding_links":["https://github.com/sponsors/cupcakearmy"],"categories":[],"sub_categories":[],"readme":"# Docker Radicale\n\nThis is a small docker image for [Radicale](https://github.com/Kozea/Radicale) and easy deployment. Bcrypt authentication inclusive.\n\n![Docker Pulls](https://img.shields.io/docker/pulls/cupcakearmy/radicale?style=flat-square)\n![Docker Image Size (tag)](https://img.shields.io/docker/image-size/cupcakearmy/radicale/latest?style=flat-square)\n![Docker Image Version (tag latest semver)](https://img.shields.io/docker/v/cupcakearmy/radicale/latest?style=flat-square)\n\n## Installation\n\n```sh\n# .env\nUSER=foo\nPASSWORD=secret\n```\n\n```yaml\n# docker-compose.yml\nversion: '3.8'\n\nservices:\n  app:\n    image: cupcakearmy/radicale:1\n    restart: unless-stopped\n    env_file: .env\n    volumes:\n      - ./data:/data\n    ports:\n      - 80:5232\n```\n\nThe env file is not strictly required, but will generate a user with its bcrypt password if missing.\n\n## macOS Setup\n\nWithout SSL/TLS the native client seems to have problems, once SSL is enabled it works like a charm.\n\n![macOS Setup](.github/macOS.png)\n\nThe same setup works for Calendar and on iOS.\n\n## Traefik\n\nAn example for traefik (v1) can found below.\n\n```yaml\nversion: '3.8'\n\nnetworks:\n  proxy:\n    external: true\n\nservices:\n  app:\n    image: cupcakearmy/radicale:1\n    restart: unless-stopped\n    env_file: .env\n    volumes:\n      - ./data:/data\n    networks:\n      - proxy\n    labels:\n      - traefik.enable=true\n      - traefik.http.routers.radicale.rule=Host(`radicale.example.org`)\n      - traefik.http.routers.radicale.entrypoints=secure\n      - traefik.http.routers.radicale.tls.certresolver=le\n```\n\n## Customize\n\n### Config\n\nYou can overwrite the config by simply mounting it into `/etc/radicale/config`.\n\n### User Auth\n\nThe default script only creates a default user with the given `USER` and `PASSWORD` credentials. For multiple users you need to create the files manually. In the default config this is set to `/data/users`.\n\nYou can add users with `htpasswd -bB -c /data/users user pass`. And then mount that file to `/data/users` or whatever you have set in the Radicale config file `filesystem_folder`, [more here](https://radicale.org/3.0.html#documentation/configuration/auth/htpasswd_filename).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcupcakearmy%2Fdocker-radicale","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcupcakearmy%2Fdocker-radicale","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcupcakearmy%2Fdocker-radicale/lists"}