Closed juvenalandres closed 1 year ago
Could you post your docker run
command or docker-compose.yml
for baikal, and screenshots of initial baikal setup (you might need to re-create your baikal container)
Thanks for getting back to me. This is my complete docker-compose.yaml
version: "3"
services:
baikal:
image: ckulka/baikal:nginx
restart: always
ports:
- "86:80"
volumes:
- /srv/dev-disk-by-uuid-b25ef428-93bd-416b-996e-2d308bee1897/data/appdata/baikal/config:/var/www/baikal/config
- /srv/dev-disk-by-uuid-b25ef428-93bd-416b-996e-2d308bee1897/data/appdata/baikal/data:/var/www/baikal/Specific
links:
- baikal-db
baikal-db:
restart: always
image: mariadb
container_name: baikal-db
volumes:
- /srv/dev-disk-by-uuid-b25ef428-93bd-416b-996e-2d308bee1897/data/appdata/baikal/db:/var/lib/mysql
environment:
MYSQL_ROOT_PASSWORD: xxxx
MYSQL_DATABASE: baikal
MYSQL_USER: baikal
MYSQL_PASSWORD: xxxx
agendav:
image: nagimov/agendav-docker:latest
container_name: agendav
environment:
- AGENDAV_SERVER_NAME=127.0.0.1
- AGENDAV_TITLE=Bienvenido a tu calendario
- AGENDAV_FOOTER=Hosted by Madriguerasb
- AGENDAV_ENC_KEY=xxxx
- AGENDAV_CALDAV_SERVER=https://cal.xxxx.com/cal.php
- AGENDAV_TIMEZONE=UTC+1
- AGENDAV_LANG=en
- AGENDAV_LOG_DIR=/tmp/
ports:
- "88:80"
Here are the screenshots of the setup of Baikal
Cheers
@juvenalandres I just tested a similar setup and it worked fine.
Could you try the following:
network_mode: host
to agendav)baikal-specific:/var/www/baikal/Specific
and baikal-config:/var/www/baikal/config
(not sure if there are any permission issues with your mapped path)If this minimal setup runs correctly start introducing configuration changes one by one (volume mapping, mysql backend, http proxying, etc) and see where it breaks. As-is, it's hard to troubleshoot now knowing everything about your setup.
Finally changed to Radicale and everything works as expected.
Too bad I haven't found the solution though.
Thanks for your help!
@juvenalandres glad something worked! Do you mind sharing your docker-compose for the reference with some explanations if required (e.g. proxied endpoints)? Thanks!
Hello, I'm trying your container to connect it to my Baikal instance. When accessing the web interface with one of the Users created in Baikal, it does not show any calendar at all, just this:
The logs show this warning, what does it mean? That IP is not my localhost
My docker-compose looks like this:
Any help would be appreciated.
Thank you