tomsquest / docker-radicale

Docker image for Radicale calendar and contact server :calendar: + security :closed_lock_with_key: + addons :rocket:
GNU General Public License v3.0
562 stars 80 forks source link

Unable to get RadicaleInfCloud to work #157

Closed AaronBenDaniel closed 1 month ago

AaronBenDaniel commented 1 month ago

I can successfully run docker-radicale using the provided docker-compose.yml and config files, but when I try to extend the image to include RadicaleInfCloud the internal webui still shows.

I've created Dockerfile.extended with the following contents:

FROM tomsquest/docker-radicale

RUN /venv/bin/pip install git+https://github.com/Unrud/RadicaleInfCloud

I've run sudo docker build -t radicale-extended -f Dockerfile.extended ., altered the image in docker-compose.yml from tomsquest/docker-radicale to radicale-extended, and changed type = internal to type = radicale_infcloud under the [web] header in config/config.

The container log shows web type is 'radicale_infcloud' but when I go to localhost:5232 the webui is unchanged.

tomsquest commented 1 month ago

Hi @AaronBenDaniel ,

Maybe the issue is on InfCloud. See: https://github.com/Unrud/RadicaleInfCloud/issues/26

You can reopen this issue if not working using the provided fork.

AaronBenDaniel commented 1 month ago

This worked! Thank you.