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.
I can successfully run
docker-radicale
using the provideddocker-compose.yml
andconfig
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:I've run
sudo docker build -t radicale-extended -f Dockerfile.extended .
, altered the image indocker-compose.yml
fromtomsquest/docker-radicale
toradicale-extended
, and changedtype = internal
totype = radicale_infcloud
under the[web]
header inconfig/config
.The container log shows
web type is 'radicale_infcloud'
but when I go tolocalhost:5232
the webui is unchanged.