Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/heyvaldemar/seafile-traefik-letsencrypt-docker-compose
Seafile with Let's Encrypt Using Docker Compose
https://github.com/heyvaldemar/seafile-traefik-letsencrypt-docker-compose
devops docker docker-compose file-upload letsencrypt letsencrypt-certificates seafile seafile-ce seafile-cli seafile-client seafile-community seafile-community-edition seafile-community-manual seafile-dark seafile-manual seafile-server storage storage-provider storage-service traefik
Last synced: about 1 month ago
JSON representation
Seafile with Let's Encrypt Using Docker Compose
- Host: GitHub
- URL: https://github.com/heyvaldemar/seafile-traefik-letsencrypt-docker-compose
- Owner: heyvaldemar
- Created: 2024-11-01T21:15:27.000Z (2 months ago)
- Default Branch: main
- Last Pushed: 2024-11-01T21:16:07.000Z (2 months ago)
- Last Synced: 2024-11-27T06:46:54.680Z (about 2 months ago)
- Topics: devops, docker, docker-compose, file-upload, letsencrypt, letsencrypt-certificates, seafile, seafile-ce, seafile-cli, seafile-client, seafile-community, seafile-community-edition, seafile-community-manual, seafile-dark, seafile-manual, seafile-server, storage, storage-provider, storage-service, traefik
- Language: Shell
- Homepage: https://www.heyvaldemar.com
- Size: 9.77 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
Awesome Lists containing this project
README
# Seafile with Let's Encrypt Using Docker Compose
[](https://github.com/heyvaldemar/seafile-traefik-letsencrypt-docker-compose/actions)
The badge displayed on my repository indicates the status of the deployment verification workflow as executed on the latest commit to the main branch.
**Passing**: This means the most recent commit has successfully passed all deployment checks, confirming that the Docker Compose setup functions correctly as designed.
π The complete installation guide is available on my [website](https://www.heyvaldemar.com/install-seafile-using-docker-compose/).
β Change variables in the `.env` to meet your requirements.
π‘ Note that the `.env` file should be in the same directory as `seafile-traefik-letsencrypt-docker-compose.yml`.
Create networks for your services before deploying the configuration using the commands:
`docker network create traefik-network`
`docker network create seafile-network`
Deploy Seafile using Docker Compose:
`docker compose -f seafile-traefik-letsencrypt-docker-compose.yml -p seafile up -d`
# Fixing CSRF Verification Error (403 Forbidden) in Seafile
If you encounter a `403 Forbidden - CSRF verification failed` error when logging into Seafile, follow these steps to add your domain to the trusted origins and set the correct URL for the file server.
Run the following command, replacing `https://seafile.heyvaldemar.net` with your Seafile domain:
```
export SEAFILE_DOMAIN="https://seafile.heyvaldemar.net" \
&& SEAFILE_CONTAINER=$(docker ps -aqf "name=seafile-seafile") \
&& docker exec -it $SEAFILE_CONTAINER /bin/sh -c "sed -i 's|SERVICE_URL = .*|SERVICE_URL = \"$SEAFILE_DOMAIN\"|' /opt/seafile/conf/seahub_settings.py" \
&& docker exec -it $SEAFILE_CONTAINER /bin/sh -c "sed -i '/^CSRF_TRUSTED_ORIGINS/d' /opt/seafile/conf/seahub_settings.py && echo \"CSRF_TRUSTED_ORIGINS = ['$SEAFILE_DOMAIN']\" >> /opt/seafile/conf/seahub_settings.py" \
&& docker exec -it $SEAFILE_CONTAINER /bin/sh -c "sed -i '/^FILE_SERVER_ROOT/d' /opt/seafile/conf/seahub_settings.py && echo \"FILE_SERVER_ROOT = '$SEAFILE_DOMAIN/seafhttp'\" >> /opt/seafile/conf/seahub_settings.py" \
&& docker restart $SEAFILE_CONTAINER
```This command will:
1. Set `SERVICE_URL` to your domain (e.g., `https://seafile.heyvaldemar.net`).
2. Add the domain to `CSRF_TRUSTED_ORIGINS` to allow trusted requests.
3. Set `FILE_SERVER_ROOT` to your domainβs file server URL.
4. Restart the Seafile container to apply changes.After running the command, try logging in again.
# Backups
The `backups` container in the configuration is responsible for the following:
1. **Database Backup**: Creates compressed backups of the MariaDB database using pg_dump.
Customizable backup path, filename pattern, and schedule through variables like `MARIADB_BACKUPS_PATH`, `MARIADB_BACKUP_NAME`, and `BACKUP_INTERVAL`.2. **Application Data Backup**: Compresses and stores backups of the application data on the same schedule. Controlled via variables such as `DATA_BACKUPS_PATH`, `DATA_BACKUP_NAME`, and `BACKUP_INTERVAL`.
3. **Backup Pruning**: Periodically removes backups exceeding a specified age to manage storage. Customizable pruning schedule and age threshold with `MARIADB_BACKUP_PRUNE_DAYS` and `DATA_BACKUP_PRUNE_DAYS`.
By utilizing this container, consistent and automated backups of the essential components of your instance are ensured. Moreover, efficient management of backup storage and tailored backup routines can be achieved through easy and flexible configuration using environment variables.
# seafile-restore-database.sh Description
This script facilitates the restoration of a database backup:
1. **Identify Containers**: It first identifies the service and backups containers by name, finding the appropriate container IDs.
2. **List Backups**: Displays all available database backups located at the specified backup path.
3. **Select Backup**: Prompts the user to copy and paste the desired backup name from the list to restore the database.
4. **Stop Service**: Temporarily stops the service to ensure data consistency during restoration.
5. **Restore Database**: Executes a sequence of commands to drop the current database, create a new one, and restore it from the selected compressed backup file.
6. **Start Service**: Restarts the service after the restoration is completed.
To make the `seafile-restore-database.shh` script executable, run the following command:
`chmod +x seafile-restore-database.sh`
Usage of this script ensures a controlled and guided process to restore the database from an existing backup.
# seafile-restore-application-data.sh Description
This script is designed to restore the application data:
1. **Identify Containers**: Similarly to the database restore script, it identifies the service and backups containers by name.
2. **List Application Data Backups**: Displays all available application data backups at the specified backup path.
3. **Select Backup**: Asks the user to copy and paste the desired backup name for application data restoration.
4. **Stop Service**: Stops the service to prevent any conflicts during the restore process.
5. **Restore Application Data**: Removes the current application data and then extracts the selected backup to the appropriate application data path.
6. **Start Service**: Restarts the service after the application data has been successfully restored.
To make the `seafile-restore-application-data.sh` script executable, run the following command:
`chmod +x seafile-restore-application-data.sh`
By utilizing this script, you can efficiently restore application data from an existing backup while ensuring proper coordination with the running service.
# Author
Iβm Vladimir Mikhalev, the [Docker Captain](https://www.docker.com/captains/vladimir-mikhalev/), but my friends can call me Valdemar.
π My [website](https://www.heyvaldemar.com/) with detailed IT guides\
π¬ Follow me on [YouTube](https://www.youtube.com/channel/UCf85kQ0u1sYTTTyKVpxrlyQ?sub_confirmation=1)\
π¦ Follow me on [Twitter](https://twitter.com/heyValdemar)\
π¨ Follow me on [Instagram](https://www.instagram.com/heyvaldemar/)\
π§΅ Follow me on [Threads](https://www.threads.net/@heyvaldemar)\
π Follow me on [Mastodon](https://mastodon.social/@heyvaldemar)\
π§ Follow me on [Bluesky](https://bsky.app/profile/heyvaldemar.bsky.social)\
πΈ Follow me on [Facebook](https://www.facebook.com/heyValdemarFB/)\
π₯ Follow me on [TikTok](https://www.tiktok.com/@heyvaldemar)\
π» Follow me on [LinkedIn](https://www.linkedin.com/in/heyvaldemar/)\
π Follow me on [GitHub](https://github.com/heyvaldemar)# Communication
πΎ Chat with IT pros on [Discord](https://discord.gg/AJQGCCBcqf)\
π§ Reach me at [email protected]# Give Thanks
π Support on [GitHub](https://github.com/sponsors/heyValdemar)\
π Support on [Patreon](https://www.patreon.com/heyValdemar)\
π₯€ Support on [BuyMeaCoffee](https://www.buymeacoffee.com/heyValdemar)\
πͺ Support on [Ko-fi](https://ko-fi.com/heyValdemar)\
π Support on [PayPal](https://www.paypal.com/paypalme/heyValdemarCOM)