{"id":26537060,"url":"https://github.com/vardumper/ibexa-on-docker","last_synced_at":"2026-04-10T12:31:27.100Z","repository":{"id":178948812,"uuid":"661294361","full_name":"vardumper/ibexa-on-docker","owner":"vardumper","description":"Little helper to set up Ibexa DXP on Docker ","archived":false,"fork":false,"pushed_at":"2023-12-15T09:58:06.000Z","size":140,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-08-14T22:45:05.627Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Dockerfile","has_issues":false,"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/vardumper.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}},"created_at":"2023-07-02T11:56:00.000Z","updated_at":"2023-11-12T08:24:08.000Z","dependencies_parsed_at":"2023-12-15T10:44:13.927Z","dependency_job_id":null,"html_url":"https://github.com/vardumper/ibexa-on-docker","commit_stats":null,"previous_names":["vardumper/ibexa-on-docker"],"tags_count":19,"template":false,"template_full_name":null,"purl":"pkg:github/vardumper/ibexa-on-docker","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vardumper%2Fibexa-on-docker","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vardumper%2Fibexa-on-docker/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vardumper%2Fibexa-on-docker/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vardumper%2Fibexa-on-docker/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/vardumper","download_url":"https://codeload.github.com/vardumper/ibexa-on-docker/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vardumper%2Fibexa-on-docker/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31642680,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-10T07:40:12.752Z","status":"ssl_error","status_checked_at":"2026-04-10T07:40:11.664Z","response_time":98,"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":[],"created_at":"2025-03-21T22:18:22.130Z","updated_at":"2026-04-10T12:31:27.074Z","avatar_url":"https://github.com/vardumper.png","language":"Dockerfile","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Ibexa DXP on Docker\n\nThis helper repository sets up a new Ibexa DXP project for you with a pre-made Docker configuration to get you started quicker.\nThe official Ibexa meta package installation is executed during install. Ibexa will be placed in the `app` folder. This repository acts as a wrapper that includes a docker development configuration around it.\n\n## Requirements\n\n- **Docker** installed and running (`brew install --cask docker`)\n- **Composer** installed (`brew install node`)\n- **Node** (`brew install node`) and **Yarn** installed (`npm install --global yarn`)\n\n## Getting started\n\nDuring installation, you will be prompted to enter your Ibexa credentials. You can get them in Ibexa's [support panel](https://support.ibexa.co).\nThe official documentation has [more details on credentials](https://doc.ibexa.co/en/latest/getting_started/requirements/#ibexa-dxp-credentials).\n\nStore your Ibexa credentials globally `composer config --global http-basic.updates.ibexa.co \u003cinstallation-key\u003e \u003ctoken-password\u003e`.\nYou will need to repeat this step (see below) inside the PHP container, so that composer can install additional dependencies or fetch updates.\n\n## Installation\n\n**Step 1**: Pick one flavour of Ibexa. Exceute one of the following commands:\n\n```\ncomposer create-project vardumper/ibexa-on-docker \u003cmy-folder\u003e # Installs Ibexa DXP Open Source (default)\ncomposer create-project vardumper/ibexa-on-docker:dev-experience \u003cmy-folder\u003e # Installs Ibexa DXP Experience\ncomposer create-project vardumper/ibexa-on-docker:dev-commerce \u003cmy-folder\u003e # Installs Ibexa DXP Commerce\ncomposer create-project vardumper/ibexa-on-docker:dev-content \u003cmy-folder\u003e # Installs Ibexa DXP Content\n```\n\n**Step 2**: Finalizing the installation\n\n```bash\ncd \u003cmy-folder\u003e # change into the project folder\ndocker-compose up -d # this will start the containers\ndocker exec ibexa-php /bin/bash -c \"cd /app;composer config --global http-basic.updates.ibexa.co \u003cinstallation-key\u003e \u003ctoken-password\u003e\" # stored credentials in php container\ndocker exec ibexa-php /bin/bash -c \"cd /app;composer req predis/predis\" # add required package for redis\ndocker exec ibexa-php /bin/bash -c \"cd /app;php bin/console ibexa:install\" # initialize database, run migrations, finalize setup\n```\n\n## Accessing the site\n\nFrontend: [http://localhost:8080](http://localhost:8080)\nBackend: [http://localhost:8080/admin/login](http://localhost:8080/admin/login)\nThe default credentials are username `admin` and password `publish`.\n\n## Whats included\n\nAs a personal preference I am using the bitnami images for Nginx, PHP and MariaDB.\n\n- Nginx v1.24.0\n- PHP-FPM v8.2.7\n- MariaDB v10.8.8\n- Elasticsearch v8.8.2\n- Redis v6.2\n\n## Making adjustments\n\nIf you want to run the containers on different ports, you can do so by adjusting the docker-compose.yml file.\nIf you want to use different container images, feel free to make your adjustments in the docker-compose.yml file, as well.\n\n## It's yours\n\nThe project you just created is yours. It has already been initialized \n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvardumper%2Fibexa-on-docker","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvardumper%2Fibexa-on-docker","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvardumper%2Fibexa-on-docker/lists"}