Hi there,
Bidirectional sync between easy!appointments and synology calendar doesn't work.
I'm running DSM7.3-81180 and Synology Calendar 3.0.1-21427
In case, here is my Portainer docker compose.
Do you have any idea ?
Many thanks !
Fred
services:
easyappointments:
image: alextselegidis/easyappointments:latest
container_name: easyappointments
depends_on:
- db
environment:
- DB_HOST=db
- DB_NAME=easyappointments
- DB_USERNAME=easyuser
- DB_PASSWORD=xxxxxxxx
- APP_TIMEZONE=Europe/Paris
- APP_LOCALE=fr
- BASE_URL=
https://appointments.xxxxxxxx.fr - DEBUG_MODE=TRUE
volumes:
- easy_app:/var/www/html
ports:
- "8288:80"
restart: unless-stopped
baikal:
image: ckulka/baikal:nginx
container_name: baikal
restart: unless-stopped
environment:
- BAIKAL_ADMIN_PASSWORD=xxxxxxxxx
- BAIKAL_SERVER_NAME=baikal
- TZ=Europe/Paris
- BAIKAL_URI_BASE=/dav.php
- NGINX_REAL_IP_HEADER=X-Forwarded-For
- NGINX_REAL_IP_RECURSIVE=on
- TRUSTED_PROXY=
0.0.0.0/0 volumes:
- /volume1/docker/easyappointment/baikal/config:/var/www/baikal/config
- /volume1/docker/easyappointment/baikal/data:/var/www/baikal/Specific
ports:
- "8765:80"
db:
image: mariadb:10.11
container_name: easyappointments-db
environment:
- MYSQL_ROOT_PASSWORD=xxxxxxxx
- MYSQL_DATABASE=easyappointments
- MYSQL_USER=easyuser
- MYSQL_PASSWORD=xxxxxxxx
volumes:
- easy_db:/var/lib/mysql
restart: unless-stopped
volumes:
easy_app:
easy_db: