Run Baïkal through Docker
Baïkal is a quite popular Calendar+Contacts server. It supports CalDAV as well as CardDAV.
I’ve been using it for my calendars and adressbooks already for more than 4 years now. However, I initially installed it as plain PHP application with a MySQL database. The developers also announced quite early, that they are working on a Docker image, but there is nothing useful as of mid 2018. So far they just provide a quite inconvenient how-to and a list of issues that apparently prevent them from providing a proper Docker image. Thus, I just dockerised the application myself :)
The Docker image
Actually, creating a Docker image for Baïkal was super easy. In the end, it is “only” a PHP application ;-) The corresponding Dockerfile can be found in the root directory of Baïkal’s git repository (at least in my fork). The latest version at the time of writing is:
So, it basically
- installs some dependencies through
apt-get
, - installs the PDO-MySQL extension,
- installs composer,
- adds the Baikal sources into the image,
- and finally installs remaining Baikal dependencies through composer.
I distribute the image as binfalse/baikal.
Using the Docker image
Using the image is fairly simple.
Basically, you only need to mount some persistent space to /var/www/Specific
docker run -it --rm -p 80:80 -v /path/to/persistent:/var/www/Specific binfalse/baikal
Please make sure that the directory /path/to/persistent
has proper permissions.
In the container an Apache2 is serving the contents, so make sure the user www-data
(UID 33
) is allowed to rwx
that directory.
To start with, you can use the original Specific directory from the Baïkal repository.
Then head to your Baikal instance (which will probably redirect to BASEURL/admin/install
), and setup your server.
Every configuration will be stored in the mounted volume at /path/to/persistent
.
SSL
To support encrypted connections you would need to mount the certificates as well as a modified Apache configuration into the container. However, I recommend to run it behind a reverse proxy, such as binfalse/nginx-proxy, and let the proxy handle all SSL connections (as for all other containers). This way, you just need one proper SSL configuration.
MySQL
The default SQLite database is perfect for a first test, but is slow and just allows for a limited amount of SQL variables. If you for example have more than 999 contacts, the first sync of a clean WebDAV device will result in an exception such as:
PDOException: SQLSTATE[HY000]: General error: 1 too many SQL variables
Thus, for production you may want to switch to a proper database, such as MariaDB. Lucky you, the Docker image supports MySQL! ;-)
To reproducibly assemble both containers, I recommend Docker-Compose.
Here is a sample config with two containers baikal
and baikal-db
:
This assumes, that your Baikal configuration can be found in /srv/baikal/config
.
The database will be stored in /srv/baikal/database
.
Also note the database credentials for configuring Baikal.
If you’re not running a reverse proxy in front of the application, you also need to add some port forwarding for the baikal
container:
Mail support
I’m not sure why, but Baikal’s list of issues included support for mail. However, adding mail support should also be fairly easy if needed. I already wrote a How-To for PHP-mail in Docker.
PLEASE NOTE: sSMTP is not maintained anymore! Please switch to
msmtp
, for example, as I explained in Migrating from sSMTP to msmtp.
- apache (15) ,
- cloud (3) ,
- config (21) ,
- php (8) ,
- docker (17) ,
- webdav (1) ,
- http (6) ,
- mail (11) ,
- network (81) ,
- private (31) ,
- sync (4) ,
- ssmtp (5) ,
- baikal (2) ,
- caldav (2) ,
- carddav (2) ,
- calendar (2)
Leave a comment
There are multiple options to leave a comment:
- send me an email
- submit a comment through the feedback page (anonymously via TOR)
- Fork this repo at GitHub, add your comment to the _data/comments directory and send me a pull request
- Fill the following form and Staticman will automagically create a pull request for you:
1 comment
Great write up! I’ve been trying to get this working, but am having problems with permissions to the “config” folder. I’m using DSM 7.1 on Synology. I assigned the “config” directory to (www-data) 33 UID, but still not working. Permission denied. Not sure what else I can try to fix.
drwxr-xr-x+ 1 33 33 0 Nov 17 10:12 config