{"id":20045340,"url":"https://github.com/ilyes512/php80-fpm","last_synced_at":"2026-05-06T13:17:13.504Z","repository":{"id":38026937,"uuid":"278892458","full_name":"Ilyes512/php80-fpm","owner":"Ilyes512","description":"About A PHP 8.0 (FPM) based Docker base image","archived":false,"fork":false,"pushed_at":"2024-04-08T08:54:35.000Z","size":68,"stargazers_count":0,"open_issues_count":2,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-03-02T07:43:57.374Z","etag":null,"topics":["docker","docker-image","php","php80","vscode"],"latest_commit_sha":null,"homepage":"","language":"Dockerfile","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Ilyes512.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"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-07-11T15:47:55.000Z","updated_at":"2023-02-26T14:42:13.000Z","dependencies_parsed_at":"2023-11-25T15:24:30.988Z","dependency_job_id":"e4c9d39a-f711-4cf5-969e-bdf96b6edd7b","html_url":"https://github.com/Ilyes512/php80-fpm","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/Ilyes512/php80-fpm","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ilyes512%2Fphp80-fpm","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ilyes512%2Fphp80-fpm/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ilyes512%2Fphp80-fpm/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ilyes512%2Fphp80-fpm/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Ilyes512","download_url":"https://codeload.github.com/Ilyes512/php80-fpm/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ilyes512%2Fphp80-fpm/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32695253,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-06T08:33:17.875Z","status":"ssl_error","status_checked_at":"2026-05-06T08:33:17.221Z","response_time":117,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: 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","docker-image","php","php80","vscode"],"created_at":"2024-11-13T11:06:36.931Z","updated_at":"2026-05-06T13:17:13.485Z","avatar_url":"https://github.com/Ilyes512.png","language":"Dockerfile","funding_links":[],"categories":[],"sub_categories":[],"readme":"# php80-fpm\n\nA PHP 8.0 (FPM) based Docker base image.\n\n[![Build Images](https://github.com/Ilyes512/php80-fpm/actions/workflows/main.yml/badge.svg)](https://github.com/Ilyes512/php80-fpm/actions/workflows/main.yml)\n\n## Pulling the images\n\n```\ndocker pull ghcr.io/ilyes512/php80-fpm:runtime-latest\ndocker pull ghcr.io/ilyes512/php80-fpm:builder-latest\ndocker pull ghcr.io/ilyes512/php80-fpm:builder-nodejs-latest\ndocker pull ghcr.io/ilyes512/php80-fpm:vscode-latest\n```\n\nThe tag scheme: `{TARGET}-{VERSION}`\n\n- **{TARGET}**: `runtime`, `builder`, `builder_nodejs` or `vscode`\n- **{VERSION}**: `latest` or tag i.e. `1.0.0`\n\n## Building the docker image(s)\n\nThere are multiple targets:\n\n  - **runtime**: this is for *production*. It does not contain any development tools like Composer and Xdebug.\n  - **builder**: this is for *development*. This is based on the runtime-target and it adds Composer, Xdebug etc.\n  - **builder_nodejs**: this is for *development*. This is based on the builder-target and it adds NodeJS.\n  - **vscode**: this is for *development* using\n  [VS Code Remote](https://code.visualstudio.com/docs/remote/remote-overview). This is based on the\n  `builder_nodejs`-target and adds some VS Code deps.\n\nBuilding `runtime`-target:\n\n```\ndocker build --tag ghcr.io/ilyes512/php80-fpm:runtime-latest --target runtime .\n```\n\nBuilding `builder`-target:\n\n```\ndocker build --tag ghcr.io/ilyes512/php80-fpm:builder-latest --target builder .\n```\n\nBuilding `builder_nodejs`-target:\n\n```\ndocker build --tag ghcr.io/ilyes512/php80-fpm:builder-nodejs-latest --target builder_nodejs .\n```\n\nBuilding `vscode`-target:\n\n```\ndocker build --tag ghcr.io/ilyes512/php80-fpm:vscode-latest --target vscode .\n```\n\n## Task commands\n\nAvailable [Task](https://taskfile.dev/#/) commands:\n\n```\n* build:          Build all PHP Docker image targets\n* lint:           Apply a Dockerfile linter (https://github.com/hadolint/hadolint)\n* shell:          Interactive shell\n* act:main:       Run Act with push event on main branch\n* act:pr:         Run Act with pull_request event\n* act:tag:        Run Act with tag (push) event\n```\n\n### Act tasks\n\n[Act](https://github.com/nektos/act) is a tool to run Github Actions locally. Before you can run Act and the\n`act:*`-tasks you need to add an `GITHUB_TOKEN`-secret. You can do this by adding the following\nAct config file to you users `$HOME`-directory:\n\nFile path: `~/.actrc`\n```\n-s GITHUB_TOKEN=\u003cyour_github_token\u003e\n```\n\nReplace `\u003cyour_github_token\u003e` with a Github personal acces token. You can generate a new token\n[here](https://github.com/settings/tokens/new?description=Act) (no scopes\nare needed!).\n\nNote: Does not (yet) work for Apple devices using Apple Silicon (i.e. M1).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Filyes512%2Fphp80-fpm","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Filyes512%2Fphp80-fpm","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Filyes512%2Fphp80-fpm/lists"}