{"id":15946383,"url":"https://github.com/inmanturbo/clr-docker-lemp","last_synced_at":"2026-04-12T03:39:23.912Z","repository":{"id":129632661,"uuid":"304773975","full_name":"inmanturbo/clr-docker-lemp","owner":"inmanturbo","description":"Clear Linux Docker Environment for Nginx Mariadb PHP and Redis Development. With php-extras bundle, and PHPRedis, and redis server!","archived":false,"fork":false,"pushed_at":"2020-11-13T13:31:12.000Z","size":70,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-07-22T00:34:37.825Z","etag":null,"topics":["clearlinux","devops","docker","imagick","laravel","mailparse-extension","mariadb","nginx","php","phpredis","redis","redis-client"],"latest_commit_sha":null,"homepage":"","language":"Shell","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/inmanturbo.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","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":"2020-10-17T01:31:51.000Z","updated_at":"2020-11-13T13:31:15.000Z","dependencies_parsed_at":null,"dependency_job_id":"49b34fb0-09b6-43c9-bf15-20e4cdef7da1","html_url":"https://github.com/inmanturbo/clr-docker-lemp","commit_stats":null,"previous_names":[],"tags_count":13,"template":false,"template_full_name":null,"purl":"pkg:github/inmanturbo/clr-docker-lemp","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/inmanturbo%2Fclr-docker-lemp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/inmanturbo%2Fclr-docker-lemp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/inmanturbo%2Fclr-docker-lemp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/inmanturbo%2Fclr-docker-lemp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/inmanturbo","download_url":"https://codeload.github.com/inmanturbo/clr-docker-lemp/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/inmanturbo%2Fclr-docker-lemp/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":268672055,"owners_count":24288244,"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","status":"online","status_checked_at":"2025-08-04T02:00:09.867Z","response_time":79,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["clearlinux","devops","docker","imagick","laravel","mailparse-extension","mariadb","nginx","php","phpredis","redis","redis-client"],"created_at":"2024-10-07T09:21:26.546Z","updated_at":"2026-04-12T03:39:18.871Z","avatar_url":"https://github.com/inmanturbo.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Clear Linux Docker LEMP Stack\n- Rolling Release with latest versions of Mariadb, Nginx and PHP\n- PHP Extras Bundle\n    - everything needed for modern frameworks like laravel\n    - also includes imagick, mailparse, redis, and zmq\n    - escape dependency hell with bundles!\n\n### Add development stack to existing laravel project:\n```\nwget https://raw.githubusercontent.com/inmanturbo/clr-docker-lemp/master/.env.example \\\n \u0026\u0026 wget https://raw.githubusercontent.com/inmanturbo/clr-docker-lemp/master/Dockerfile \\\n \u0026\u0026 wget https://raw.githubusercontent.com/inmanturbo/clr-docker-lemp/master/docker-compose.yaml \\\n \u0026\u0026 wget https://raw.githubusercontent.com/inmanturbo/clr-docker-lemp/master/laravel.conf.example \\\n \u0026\u0026 wget https://raw.githubusercontent.com/inmanturbo/clr-docker-lemp/master/mariadb.env.example \\\n \u0026\u0026 wget https://raw.githubusercontent.com/inmanturbo/clr-docker-lemp/master/php.ini.example \\\n \u0026\u0026 mkdir -p .local/{etc,home,mnt} \\\n \u0026\u0026 mkdir -p .local/usr/bin \\\n \u0026\u0026 mkdir -p .local/var/{backups,public,seeds} \\\n \u0026\u0026 mkdir -p .local/var/lib/mysql \\\n \u0026\u0026 mkdir -p .local/var/log/nginx \\\n \u0026\u0026 \\\n for dir in etc home mnt; \\\n   do \\\n     cd .local/${dir}; \\\n     wget https://raw.githubusercontent.com/inmanturbo/clr-docker-lemp/master/.local/etc/.gitignore; \\\n     cd .. ; cd ..; \\\n done \\\n \u0026\u0026 \\\n for dir in backups public seeds; \\\n   do \\\n     cd .local/var/${dir}; \\\n       wget https://raw.githubusercontent.com/inmanturbo/clr-docker-lemp/master/.local/etc/.gitignore; \\\n       cd ..; cd ..; cd ..; \\\ndone \\\n\u0026\u0026 \\\ncd .local/var/lib/mysql \\\n\u0026\u0026 wget https://raw.githubusercontent.com/inmanturbo/clr-docker-lemp/master/.local/etc/.gitignore \\\n\u0026\u0026 cd ../../../usr/bin \\\n\u0026\u0026 wget https://raw.githubusercontent.com/inmanturbo/clr-docker-lemp/master/.local/etc/.gitignore \\\n\u0026\u0026 cd ../../var/log/nginx \\\n\u0026\u0026 wget https://raw.githubusercontent.com/inmanturbo/clr-docker-lemp/master/.local/etc/.gitignore \\\n\u0026\u0026 cd .. \\\n    \u0026\u0026 cd .. \\\n        \u0026\u0026 cd .. \\\n            \u0026\u0026 cd .. # :-)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Finmanturbo%2Fclr-docker-lemp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Finmanturbo%2Fclr-docker-lemp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Finmanturbo%2Fclr-docker-lemp/lists"}