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

🔨 fix(seafile): downgrade seafile version to 11.0.6 #2490

Merged
merged 1 commit into from
Jan 3, 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
2 changes: 1 addition & 1 deletion Apps/seafile/config.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"id": "seafile",
"version": "12.0.6",
"version": "11.0.6",
"image": "seafileltd/seafile-mc",
"youtube": "",
"docs_link": "",
Expand Down
2 changes: 1 addition & 1 deletion Apps/seafile/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ services:
container_name: big-bear-seafile

# Image to be used for the container
image: seafileltd/seafile-mc:12.0.6
image: seafileltd/seafile-mc:11.0.6
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue

Review security implications of version downgrade

Two security concerns to address:

  1. Verify if Seafile 11.0.6 has any known security vulnerabilities
  2. The database root password is hardcoded in the configuration

Recommendations:

  1. Document any known security implications of using version 11.0.6
  2. Consider using environment variables or secrets management for sensitive data
#!/bin/bash
# Check for security advisories
curl -s "https://manual.seafile.com/security/security_advisory/" | grep -i "11.0.6"

# Search for existing environment variable usage patterns
rg -p "DB_ROOT_PASSWD|MYSQL_ROOT_PASSWORD" --type yaml

Also applies to: 52-52


# Container restart policy
restart: unless-stopped
Expand Down
Loading