{"id":28436028,"url":"https://github.com/securitybunker/databunkerpro-setup","last_synced_at":"2025-07-19T05:05:43.820Z","repository":{"id":297391064,"uuid":"883374007","full_name":"securitybunker/databunkerpro-setup","owner":"securitybunker","description":null,"archived":false,"fork":false,"pushed_at":"2025-06-17T14:09:27.000Z","size":69,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-17T15:27:15.356Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/securitybunker.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2024-11-04T21:15:17.000Z","updated_at":"2025-06-17T14:09:37.000Z","dependencies_parsed_at":null,"dependency_job_id":"7367ddb5-edac-4263-b1f6-f863468c9a98","html_url":"https://github.com/securitybunker/databunkerpro-setup","commit_stats":null,"previous_names":["securitybunker/databunkerpro-setup"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/securitybunker/databunkerpro-setup","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/securitybunker%2Fdatabunkerpro-setup","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/securitybunker%2Fdatabunkerpro-setup/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/securitybunker%2Fdatabunkerpro-setup/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/securitybunker%2Fdatabunkerpro-setup/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/securitybunker","download_url":"https://codeload.github.com/securitybunker/databunkerpro-setup/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/securitybunker%2Fdatabunkerpro-setup/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":262343566,"owners_count":23296353,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-06-05T21:09:55.429Z","updated_at":"2025-07-19T05:05:43.788Z","avatar_url":"https://github.com/securitybunker.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# DatabunkerPro Setup\n\nThis repository contains a Helm chart and Docker Compose projects for deploying DatabunkerPro — a privacy vault and tokenization service for personal data.\n\n## Installation\n\n### Using Helm Chart from GitHub Pages\n\nThe official DatabunkerPro Helm chart is available through GitHub Pages. To install it:\n\n```bash\n# Add the Helm repository\nhelm repo add databunkerpro https://securitybunker.github.io/databunkerpro-setup\n\n# Update your local Helm repository cache\nhelm repo update\n\n# Install DatabunkerPro\nhelm install databunkerpro databunkerpro/databunkerpro\n```\n\n#### Using Internal MySQL (Percona 8)\n\nTo install DatabunkerPro with an internal Percona MySQL 8 database:\n\n```bash\nhelm install databunkerpro databunkerpro/databunkerpro \\\n  --set database.type=mysql \\\n  --set database.internal.mysql.enabled=true\n```\n\n#### Using Internal PostgreSQL\n\nTo install DatabunkerPro with an internal PostgreSQL database:\n\n```bash\nhelm install databunkerpro databunkerpro/databunkerpro \\\n  --set database.type=postgresql \\\n  --set database.internal.postgresql.enabled=true\n```\n\n#### Using Remote Database (RDS)\n\nTo install DatabunkerPro with a remote database (e.g., AWS RDS):\n\n##### For PostgreSQL:\n```bash\nhelm install databunkerpro databunkerpro/databunkerpro \\\n  --set database.external=true \\\n  --set database.type=postgresql \\\n  --set database.externalConfig.host=your-rds-host \\\n  --set database.externalConfig.user=your-user \\\n  --set database.externalConfig.password=your-password\n```\n\n##### For MySQL (Percona 8):\n```bash\nhelm install databunkerpro databunkerpro/databunkerpro \\\n  --set database.external=true \\\n  --set database.type=mysql \\\n  --set database.externalConfig.host=your-rds-host \\\n  --set database.externalConfig.user=your-user \\\n  --set database.externalConfig.password=your-password\n```\n\n#### Exposing DatabunkerPro via Ingress\n\nTo expose DatabunkerPro via Ingress, set your custom host parameter:\n\n```bash\n  --set ingress.host=databunker.your-domain.com\n```\n\nMake sure to:\n1. Replace `databunker.your-domain.com` with your actual domain\n2. Have an Ingress controller (like NGINX Ingress Controller) installed\n3. Have cert-manager installed if you want automatic SSL/TLS certificate management\n\n#### Using Custom Values File\n\nFor more complex configurations, you can create your own values file based on the default configuration:\n\n```bash\n# Download the default values file\nhelm show values databunkerpro/databunkerpro \u003e my-values.yaml\n\n# Edit the values file to match your needs\n# Then install or upgrade using your custom values\nhelm install databunkerpro databunkerpro/databunkerpro -f my-values.yaml\n```\n\nThis approach is recommended when you need to:\n* Configure multiple parameters\n* Maintain consistent configuration across deployments\n* Version control your configuration\n\n### Using Docker Compose\n\nDatabunkerPro can also be deployed using Docker Compose. We provide two options: Percona MySQL 8 and PostgreSQL.\n\n#### Using Percona MySQL 8\n\n1. Navigate to the MySQL Docker Compose directory:\n```bash\ncd docker-compose-mysql\n```\n\n2. Generate the required environment files:\n```bash\n./generate-env-files.sh\n```\n\n3. Start the services:\n```bash\ndocker compose up -d\n```\n\n#### Using PostgreSQL\n\n1. Navigate to the PostgreSQL Docker Compose directory:\n```bash\ncd docker-compose-pgsql\n```\n\n2. Generate the required environment files:\n```bash\n./generate-env-files.sh\n```\n\n3. Start the services:\n```bash\ndocker compose up -d\n```\n\nThe `generate-env-files.sh` script will:\n* Create necessary directories\n* Generate secure random passwords\n* Create environment files for MySQL/PostgreSQL and DatabunkerPro\n* Set up proper permissions\n\n## Configuration\n\nYou can customize the deployment by modifying the values in your Helm installation command or by creating a custom values file.\n\n## Additional Resources\n\n* [DatabunkerPro Documentation](https://databunker.org/databunker-pro-docs/api-and-sdk/)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsecuritybunker%2Fdatabunkerpro-setup","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsecuritybunker%2Fdatabunkerpro-setup","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsecuritybunker%2Fdatabunkerpro-setup/lists"}