Docker file for a complete davical server (davical + apache + postgresql) on Alpine Linux
This simple repository contains a Dockerfile (and other configuration files) necessary to create an Alpine Linux image contains Davical + Apache + Postgresql server
Davical is downloaded directly from its git repository while apache and postgres are installed from alpine linux repository.
-> Exposed Ports: TCP 80
-> Exposed Volumes: /config, /var/lib/postgresql/data/
-> Exposed Variables: TIME_ZONE
On TCP 80 is listening apache server with davical on hostname davical.example (set your local host file to point davical.example to 127.0.0.1)
TIME_ZONE is set by default to "Europe/Rome" but you can set as you prefer according to tzdata (for example to "Europe/Paris" or "Europe/London")
/config can be mount and must contains a personalized version of all configuration files necessary:
->apache.conf
->davical.php
->rsyslog.conf
->supervisord.conf
So you can download the configuration files present in this repository, alter and copy them into a directory to be mounted on /config and the container using them!
/var/lib/postgresql/data contains the database and the directory backups/. In this directory crond every day saves (thanks to /sbin/backup_db) a dump of davical database to backups/davical_backup.tar It is possible to restore the database using a backup: put the backup into the mounted /config, run the container and after the initialization use "docker exec container_name /sbin/restore_db"
The rsyslog server is configured to collect all logs from apache and postgres into /var/log/messages but you can personalize the configuration altering rsyslog.conf and put it in /config. rsyslog do NOT collect apache access.log (it is disabled)
The init system used is supervisord with some fixes necessary due to a bug: it is necessary 30 seconds to the database to be correctly initialized, so please wait before try to access to apache!
The default admin user is: admin with password: 12345 (you can alter it from the davical gui)
Content type
Image
Digest
Size
60 MB
Last updated
over 9 years ago
docker pull oliveria/davical