Update the Baikal Docker configuration and the related documentation file

This commit is contained in:
Alex Tselegidis 2024-04-26 12:23:52 +02:00
parent cba0effe14
commit 1878c9212c
2 changed files with 7 additions and 4 deletions

View file

@ -1,4 +1,3 @@
version: '3.1'
services: services:
php-fpm: php-fpm:
build: docker/php-fpm build: docker/php-fpm
@ -57,7 +56,9 @@ services:
baikal: baikal:
image: ckulka/baikal:0.9.4-apache image: ckulka/baikal:0.9.4-apache
ports: ports:
- "9000:80" - "8100:80"
volumes: volumes:
- ./docker/baikal:/var/www/baikal - ./docker/baikal:/var/www/html
- ./docker/baikal/config:/var/www/baikal/config
- ./docker/baikal/data:/var/www/baikal/Specific

View file

@ -39,6 +39,8 @@ In the host machine the server is accessible from `http://localhost` and the dat
You can additionally access phpMyAdmin from `http://localhost:8080` (credentials are `root` / `secret`) and Mailpit from `http://localhost:8025`. You can additionally access phpMyAdmin from `http://localhost:8080` (credentials are `root` / `secret`) and Mailpit from `http://localhost:8025`.
Baikal, a self-hosted CalDAV server used to develop the CalDAV syncing integration is available on `http://localhost:8100`.
**Attention:** This configuration is meant to make development easier. It is not intended to server as a production environment! **Attention:** This configuration is meant to make development easier. It is not intended to server as a production environment!
A production image of Easy!Appointments can be found at: https://github.com/alextselegidis/easyappointments-docker A production image of Easy!Appointments can be found at: https://github.com/alextselegidis/easyappointments-docker