Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/heyvaldemar/keycloak-traefik-letsencrypt-docker-compose
Keycloak with Let's Encrypt Using Docker Compose
https://github.com/heyvaldemar/keycloak-traefik-letsencrypt-docker-compose
containerization containers devops docker docker-compose docker-container docker-hub docker-image docker-registry docker-volumes dockerfile environment-variables healthcheck keycloak keycloak-server letsencrypt letsencrypt-certificates traefik yaml
Last synced: 6 days ago
JSON representation
Keycloak with Let's Encrypt Using Docker Compose
- Host: GitHub
- URL: https://github.com/heyvaldemar/keycloak-traefik-letsencrypt-docker-compose
- Owner: heyvaldemar
- Created: 2021-05-09T03:42:07.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-09-24T00:25:18.000Z (3 months ago)
- Last Synced: 2024-12-10T05:27:01.453Z (13 days ago)
- Topics: containerization, containers, devops, docker, docker-compose, docker-container, docker-hub, docker-image, docker-registry, docker-volumes, dockerfile, environment-variables, healthcheck, keycloak, keycloak-server, letsencrypt, letsencrypt-certificates, traefik, yaml
- Language: Shell
- Homepage: https://www.heyvaldemar.com
- Size: 79.1 KB
- Stars: 101
- Watchers: 3
- Forks: 47
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
Awesome Lists containing this project
README
# Keycloak with Let's Encrypt Using Docker Compose
[![Deployment Verification](https://github.com/heyvaldemar/keycloak-traefik-letsencrypt-docker-compose/actions/workflows/00-deployment-verification.yml/badge.svg)](https://github.com/heyvaldemar/keycloak-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-keycloak-using-docker-compose/).
โ Change variables in the `.env` to meet your requirements.
๐ก Note that the `.env` file should be in the same directory as `keycloak-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 keycloak-network`
Deploy Keycloak using Docker Compose:
`docker compose -f keycloak-traefik-letsencrypt-docker-compose.yml -p keycloak up -d`
# Backups
The `backups` container in the configuration is responsible for the following:
1. **Database Backup**: Creates compressed backups of the PostgreSQL database using pg_dump.
Customizable backup path, filename pattern, and schedule through variables like `POSTGRES_BACKUPS_PATH`, `POSTGRES_BACKUP_NAME`, and `BACKUP_INTERVAL`.2. **Backup Pruning**: Periodically removes backups exceeding a specified age to manage storage. Customizable pruning schedule and age threshold with `POSTGRES_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.
# keycloak-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 `keycloak-restore-database.shh` script executable, run the following command:
`chmod +x keycloak-restore-database.sh`
Usage of this script ensures a controlled and guided process to restore the database from an existing backup.
# 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)