Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update baikal to 0.10.1 #2161

Merged
merged 2 commits into from
Feb 8, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 15 additions & 15 deletions baikal/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
version: '3.7'
services:
app_proxy:
environment:
APP_HOST: baikal_web_1
APP_PORT: 80
PROXY_AUTH_ADD: "false"
web:
image: ckulka/baikal:0.9.5@sha256:6bbb3a55311bf64458badcea45f377450d27e671506962ba541613b9bed6ecd2
# This container runs as user 33:33 and cannot be changed in compose (https://github.com/ckulka/baikal-docker/blob/master/examples/docker-compose.localvolumes.yaml)
restart: on-failure
volumes:
- ${APP_DATA_DIR}/data/config:/var/www/baikal/config
- ${APP_DATA_DIR}/data/Specific:/var/www/baikal/Specific
version: '3.7'

Check notice on line 1 in baikal/docker-compose.yml

View workflow job for this annotation

GitHub Actions / Lint apps

Potentially using unsafe user in service "web"

The default container user "root" can lead to security vulnerabilities. If you are using the root user, please try to specify a different user (e.g. "1000:1000") in the compose file or try to set the UID/PUID and GID/PGID environment variables to 1000.

services:
app_proxy:
environment:
APP_HOST: baikal_web_1
APP_PORT: 80
PROXY_AUTH_ADD: "false"
web:
image: ckulka/baikal:0.10.1@sha256:2385faeb7cc165d2b080c0ed8c84cc59e84d03107f814ad897ab62684c792f7b
# This container runs as user 33:33 and cannot be changed in compose (https://github.com/ckulka/baikal-docker/blob/master/examples/docker-compose.localvolumes.yaml)
restart: on-failure
volumes:
- ${APP_DATA_DIR}/data/config:/var/www/baikal/config
- ${APP_DATA_DIR}/data/Specific:/var/www/baikal/Specific
15 changes: 12 additions & 3 deletions baikal/umbrel-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ id: baikal
name: Baikal
tagline: A lightweight calendar and contacts server
category: networking
version: "0.9.5"
version: "0.10.1"
port: 8890
description: >-
πŸͺ† Baikal Server is a lightweight CalDAV and CardDAV server designed for users who want to manage their calendar and contact information securely on their own server. This robust application offers an extensive web interface that simplifies the management of users, address books, and calendars, making it accessible for both beginners and experienced users.


One of the key features of Baikal is its ease of installation and configuration. It requires only a basic PHP-capable server, which means you don’t need extensive technical knowledge to get started. The server supports both MySQL and SQLite databases for data storage, providing flexibility depending on your preferences and needs.
One of the key features of Baikal is its ease of installation and configuration. It requires only a basic PHP-capable server, which means you don't need extensive technical knowledge to get started. The server supports both MySQL and SQLite databases for data storage, providing flexibility depending on your preferences and needs.


Baikal allows users to seamlessly access their contacts and calendars from any device. It is compatible with a wide range of applications, including iOS, macOS, DAVx5 on Android, Mozilla Thunderbird, and many other CalDAV and CardDAV capable applications. This compatibility ensures that you can sync your data across multiple platforms without any hassle.
Expand All @@ -30,7 +30,16 @@ gallery:
- 1.jpg
- 2.jpg
- 3.jpg
releaseNotes: ""
releaseNotes: >-
This release includes the following improvements:
- Fixed authentication issues when using reverse proxies
- Added PostgreSQL database support
- New environment variable configuration options
- Fixed database setup screen on install wizard
- Updated to sabre/dav 4.7.0


Full release notes can be found at https://github.com/sabre-io/Baikal/releases
dependencies: []
path: ""
defaultUsername: ""
Expand Down