{"id":26711720,"url":"https://github.com/opensettings/open-settings-docker","last_synced_at":"2026-04-13T20:32:19.197Z","repository":{"id":284453304,"uuid":"950947130","full_name":"OpenSettings/open-settings-docker","owner":"OpenSettings","description":"Dockerized solution for OpenSettings","archived":false,"fork":false,"pushed_at":"2025-09-27T21:21:51.000Z","size":129,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-10-21T13:40:38.958Z","etag":null,"topics":["docker","dotnet","opensettings"],"latest_commit_sha":null,"homepage":"https://hub.docker.com/r/opensettings/open-settings","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/OpenSettings.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-03-18T23:40:47.000Z","updated_at":"2025-09-27T21:04:44.000Z","dependencies_parsed_at":null,"dependency_job_id":"493830ee-43a0-47d7-b1ed-41697b8b3884","html_url":"https://github.com/OpenSettings/open-settings-docker","commit_stats":null,"previous_names":["opensettings/open-settings-docker"],"tags_count":7,"template":false,"template_full_name":null,"purl":"pkg:github/OpenSettings/open-settings-docker","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/OpenSettings%2Fopen-settings-docker","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/OpenSettings%2Fopen-settings-docker/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/OpenSettings%2Fopen-settings-docker/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/OpenSettings%2Fopen-settings-docker/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/OpenSettings","download_url":"https://codeload.github.com/OpenSettings/open-settings-docker/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/OpenSettings%2Fopen-settings-docker/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31770719,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-13T20:17:16.280Z","status":"ssl_error","status_checked_at":"2026-04-13T20:17:08.216Z","response_time":93,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["docker","dotnet","opensettings"],"created_at":"2025-03-27T10:32:25.253Z","updated_at":"2026-04-13T20:32:19.160Z","avatar_url":"https://github.com/OpenSettings.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# \u003cimg src=\"logo/open-settings-logo.png\" alt=\"Header\" width=\"24\"/\u003e OpenSettings Docker Image\n\n[![.NET Core Desktop](https://github.com/OpenSettings/open-settings-docker/actions/workflows/dotnet.yml/badge.svg?branch=master)](https://github.com/OpenSettings/open-settings-docker/actions/workflows/dotnet.yml)\n![Docker Image Version](https://img.shields.io/docker/v/opensettings/open-settings?logo=docker)\n[![Docs](https://img.shields.io/badge/docs-online-blue)](https://docs.opensettings.net)\n[![GitHub](https://img.shields.io/badge/•-open--settings-blue?logo=github)](https://github.com/OpenSettings/open-settings)\n[![GitHub](https://img.shields.io/badge/•-open--settings--spa-blue?logo=github)](https://github.com/OpenSettings/open-settings-spa)\n\nWelcome to the official docker repository for [**OpenSettings**](https://opensettings.net)!\n\nOpenSettings is a **centralized settings management** system designed for **.NET applications**. It simplifies app settings management by providing a structured and scalable approach to handling settings.\n\n![Demo](https://github.com/OpenSettings/open-settings-docs/blob/master/docs/v1/assets/gifs/demo.gif)\n\n## 📖 Documentation\n\nThe latest OpenSettings documentation is available at [**docs.opensettings.net**](https://docs.opensettings.net)\n\n## 📂 Repository Structure\n\nThis repository contains the necessary files and configurations to run OpenSettings as a provider inside a Docker container. It is designed to make deployment easy while ensuring compatibility with various environments.\n\n## 🚀 Getting Started\n\nTo contribute or run the documentation locally, follow these steps. You can choose between using docker run or Docker Compose:\n\n### 1️⃣ Method 1: Run Using Docker Run (No Need to Clone the Repository)\n\nIf you don't need to modify the code and just want to quickly run OpenSettings, you can use the following docker run command. This method doesn't require cloning the repository.\n\nRun the OpenSettings container directly from Docker Hub:\n\n```sh\ndocker run -d -p 5388:8080 --name container-open-settings opensettings/open-settings:latest\n```\n\nThis will start the OpenSettings application in a Docker container and map port 8080 from the container to port 5388 on your host machine. You can then navigate to [http://localhost:5388](http://localhost:5388) to preview the OpenSettings app.\n\nFor more information on docker usage, please check our comprehensive [Docker guide](docs.opensettings.net).\n\n### 2️⃣ Method 2: Run Using Docker Compose\n\nIf you need to modify the code or work with multiple containers (like databases or other services), you can use Docker Compose.\n\nFirst, clone the repository:\n\n```sh\ngit clone https://github.com/OpenSettings/open-settings-docker.git\ncd open-settings-docker/\n```\n\n### 3️⃣ Run Docker Compose \n\nBefore running the project, ensure that Docker and Docker Compose are installed on your machine. If you're unsure, check the [Docker installation guide](https://docs.docker.com/get-docker/).\n\nRun the following command to bring up the necessary containers:\n\n```sh\ndocker-compose up\n```\n\n### 4️⃣ Navigate to the Url\n\nOnce the containers are running, Open your browser and navigate to **[http://localhost:5388](http://localhost:5388)** to preview the OpenSettings! 🚀\n\n### 5️⃣ Configure Database Provider (Optional)\n\nBy default, the Docker Compose configuration uses `Sqlite` as the database provider. However, you can choose a different database provider by updating the `docker-compose.yml` file.\n\n```yaml\n# Default to Sqlite database (this is active by default)\n- OPENSETTINGS_Configuration__DbProviderName=Sqlite\n- OPENSETTINGS_Configuration__ConnectionString=Data Source=OpenSettings.db\n```\n\ncomment out the default `Sqlite` lines and uncomment the database provider you want to use. Be sure to also update the connection string with your own credentials.\n\n## 💡 License  \n\nLicensed under the [OpenSettings License](https://opensettings.net/license).\n\n## 🤝 Contributing\n\nBy contributing this repository, you agree to the [Contribution Terms](https://opensettings.net/contribution-terms).\n\n## 🐞 Issues \u0026 Reports  \n\nIf you encounter any issues or have suggestions, please report them to the appropriate GitHub repository.  \n\n### Where to Report?  \n- **For Docker-related issues** (e.g., container setup, networking, environment variables):  \n  👉 Report at [open-settings-docker Issues](https://github.com/OpenSettings/open-settings-docker/issues).  \n- **For OpenSettings framework issues** (e.g., settings management, API behavior):  \n  👉 Report at [open-settings Issues](https://github.com/OpenSettings/open-settings/issues).  \n\n### How to Report an Issue:  \n1. **Search for Existing Issues**: Check if your issue has already been reported in the relevant repository.  \n2. **Submit a New Issue**:  \n   - Choose the correct repository based on the issue type.  \n   - Click **\"New issue\"** and describe the problem in detail, including steps to reproduce, error messages, and logs.  \n\n### Reporting Guidelines:  \n- Be specific about the issue, including environment and configuration details.  \n- Include relevant error logs or screenshots if available.\n\n### Security Concerns:\nFor security-related issues, **do not** use GitHub Issues. Contact us directly at [security@opensettings.net](mailto:security@opensettings.net).\n\nWe appreciate your feedback and will address your concerns as soon as possible!\n\n## 🔗 Useful Links\n\n- 🌍 **Website:** [opensettings.net](https://opensettings.net)\n- 🌍 **Docs Website:** [docs.opensettings.net](https://docs.opensettings.net)\n- ❤️ **Become a Sponsor:** [opensettings.net/become-a-sponsor](https://opensettings.net/become-a-sponsor)\n- 📜 **License:** [opensettings.net/license](https://opensettings.net/license)\n- ⚖️ **Terms \u0026 Conditions:** [opensettings.net/terms-and-conditions](https://opensettings.net/terms-and-conditions)\n- 🔒 **Privacy Policy:** [opensettings.net/privacy-policy](https://opensettings.net/privacy-policy)\n\n\u003cbr\u003e\n\n✨ *OpenSettings makes settings management simple, powerful, and flexible!* 🚀\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fopensettings%2Fopen-settings-docker","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fopensettings%2Fopen-settings-docker","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fopensettings%2Fopen-settings-docker/lists"}