{"id":22466395,"url":"https://github.com/feries/docker-php7.2-fpm-dev","last_synced_at":"2025-03-27T15:18:21.745Z","repository":{"id":113699095,"uuid":"163456822","full_name":"feries/docker-php7.2-fpm-dev","owner":"feries","description":null,"archived":false,"fork":false,"pushed_at":"2019-01-10T15:57:26.000Z","size":6,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-02-01T19:12:41.800Z","etag":null,"topics":["docker","docker-image","dockerfile","php","php-fpm","php7","php72","xdebug"],"latest_commit_sha":null,"homepage":null,"language":"Dockerfile","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/feries.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":"2018-12-28T23:10:12.000Z","updated_at":"2019-01-10T15:57:27.000Z","dependencies_parsed_at":null,"dependency_job_id":"fb72ad8a-4815-4083-ad18-322e834ffa66","html_url":"https://github.com/feries/docker-php7.2-fpm-dev","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/feries%2Fdocker-php7.2-fpm-dev","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/feries%2Fdocker-php7.2-fpm-dev/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/feries%2Fdocker-php7.2-fpm-dev/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/feries%2Fdocker-php7.2-fpm-dev/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/feries","download_url":"https://codeload.github.com/feries/docker-php7.2-fpm-dev/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245868325,"owners_count":20685608,"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":["docker","docker-image","dockerfile","php","php-fpm","php7","php72","xdebug"],"created_at":"2024-12-06T10:12:05.850Z","updated_at":"2025-03-27T15:18:21.717Z","avatar_url":"https://github.com/feries.png","language":"Dockerfile","readme":"# PHP-FPM 7.2.13-DEV Docker\nPHP-FPM 7.2.13 use **ONLY** for development environment\n\n**Good for the latest stable version of symfony**\n\n[![Build Status](https://travis-ci.org/feries/docker-php7.2-fpm-dev.svg?branch=master)](https://travis-ci.org/feries/docker-php7.2-fpm-dev)\n[![](https://images.microbadger.com/badges/image/feries/php7.2.svg)](https://microbadger.com/images/feries/php7.2 \"Get your own image badge on microbadger.com\")\n[![](https://images.microbadger.com/badges/version/feries/php7.2.svg)](https://microbadger.com/images/feries/php7.2 \"Get your own version badge on microbadger.com\")\n\n*Based on **[php:7.2.13-fpm](https://github.com/docker-library/php/blob/master/7.2/stretch/fpm/Dockerfile)***\n\n## Services\n\n- **PHP-FPM 7.2.13** (on *port 9001*)\n    - **APCu** - APC User Cache\n    - **OPcache**\n    - PHP extension for interfacing with **Redis** (with php session.save_handler pre-configurated with tcp://redis-session:6379)\n    - **PHP Intl** extension with **Icu** 63.1\n    - **PHP pdo/pdo_mysql** extension \n    - **PHP zip** extension \n- **Xdebug** 2.6.1 (on *port 9000*)\n- **Composer**\n- **GIT**\n- **ZSH** (with *oh-my-zsh*) shell\n\n***\n\n### Xdebug\n\nPreconfigurated with this arg\n\n    ARG XDEBUG_KEY=\"PHPSTORM\"\n    ARG XDEBUG_REMOTE_IP=\"10.254.254.254\"\n    ARG XDEBUG_REMOTE_PORT=\"9000\"\n \n#### Xdebug with macOS host (Docker for Mac)\n\nAdd new alias loopback for localhost\n\n    sudo ifconfig lo0 alias 10.254.254.254 netmask 255.255.255.0\n\nor use [xdebug-starter.sh](https://github.com/feries/dch-project-sample/blob/master/container/php/xdebug-starter.sh)\n\n#### Xdebug with Linux host\n\nAdd new alias loopback for localhost\n\nAppend to file `/etc/network/interfaces`\n\n\n    auto lo:0\n    iface lo:0 inet static\n    name Docker loopback\n    address 10.254.254.254\n    netmask 255.255.255.0\n\nor use [xdebug-starter.sh](https://github.com/feries/dch-project-sample/blob/master/container/php/xdebug-starter.sh)\n\n***\n\n### Redis (session handler)\n\nIf you use this docker with compose, simply add this service to your docker-compose.yml\n\n      redis-session:\n          image: redis:latest\n          hostname: redis-session\n          ports:\n            - \"6379:6379\"\n            \nAnd link php container with redis\n\neg.\n\n      php:\n          image: feries/php7.2:latest\n          hostname: php\n          links:\n              - redis-session\n\n\n*** \n\nLicensed under a GPL3+ license: http://www.gnu.org/licenses/gpl-3.0.txt","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fferies%2Fdocker-php7.2-fpm-dev","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fferies%2Fdocker-php7.2-fpm-dev","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fferies%2Fdocker-php7.2-fpm-dev/lists"}