├── .all-contributorsrc ├── .github └── workflows │ ├── pr.yaml │ └── release.yaml ├── .gitignore ├── 7.1 ├── Dockerfile ├── devfs │ └── etc │ │ ├── php7 │ │ └── conf.d │ │ │ ├── 00_opcache.ini │ │ │ ├── 50-setting.ini │ │ │ └── xdebug.ini │ │ ├── profile │ │ └── supervisor │ │ └── conf.d │ │ └── supervisord.conf └── rootfs │ └── etc │ └── php7 │ ├── conf.d │ ├── 00_opcache.ini │ └── 50-setting.ini │ └── php-fpm.conf ├── 7.2 ├── Dockerfile ├── devfs │ └── etc │ │ ├── php7 │ │ └── conf.d │ │ │ ├── 00_opcache.ini │ │ │ ├── 00_xdebug.ini │ │ │ └── 50-setting.ini │ │ ├── profile │ │ └── supervisor │ │ └── conf.d │ │ └── supervisord.conf └── rootfs │ └── etc │ └── php7 │ ├── conf.d │ ├── 00_opcache.ini │ └── 50-setting.ini │ └── php-fpm.conf ├── 7.3 ├── Dockerfile ├── devfs │ └── etc │ │ ├── php7 │ │ └── conf.d │ │ │ ├── 00_opcache.ini │ │ │ ├── 00_xdebug.ini │ │ │ └── 50-setting.ini │ │ ├── profile │ │ └── supervisor │ │ └── conf.d │ │ └── supervisord.conf └── rootfs │ └── etc │ └── php7 │ ├── conf.d │ ├── 00_opcache.ini │ └── 50-setting.ini │ └── php-fpm.conf ├── 7.4 ├── Dockerfile ├── devfs │ └── etc │ │ ├── php7 │ │ └── conf.d │ │ │ ├── 00_opcache.ini │ │ │ ├── 00_xdebug.ini │ │ │ └── 50_settings.ini │ │ ├── profile │ │ └── supervisord │ │ └── conf.d │ │ └── supervisord.conf └── rootfs │ └── etc │ └── php7 │ ├── conf.d │ ├── 00_opcache.ini │ └── 50_settings.ini │ └── php-fpm.conf ├── 8.0 ├── Dockerfile ├── devfs │ └── etc │ │ ├── php8 │ │ └── conf.d │ │ │ ├── 00_opcache.ini │ │ │ ├── 00_xdebug.ini │ │ │ └── 50_settings.ini │ │ ├── profile │ │ └── supervisord │ │ └── conf.d │ │ └── supervisord.conf └── rootfs │ └── etc │ └── php8 │ ├── conf.d │ ├── 00_opcache.ini │ └── 50_settings.ini │ └── php-fpm.conf ├── 8.1 ├── Dockerfile ├── devfs │ └── etc │ │ ├── php81 │ │ └── conf.d │ │ │ ├── 00_opcache.ini │ │ │ ├── 00_xdebug.ini │ │ │ └── 50_settings.ini │ │ ├── profile │ │ └── supervisord │ │ └── conf.d │ │ └── supervisord.conf └── rootfs │ └── etc │ └── php81 │ ├── conf.d │ ├── 00_opcache.ini │ └── 50_settings.ini │ └── php-fpm.conf ├── 8.2 ├── Dockerfile ├── devfs │ └── etc │ │ ├── php82 │ │ └── conf.d │ │ │ ├── 00_opcache.ini │ │ │ ├── 00_xdebug.ini │ │ │ └── 50_settings.ini │ │ ├── profile │ │ └── supervisord │ │ └── conf.d │ │ └── supervisord.conf └── rootfs │ └── etc │ └── php82 │ ├── conf.d │ ├── 00_opcache.ini │ └── 50_settings.ini │ └── php-fpm.conf ├── 8.3 ├── Dockerfile ├── devfs │ └── etc │ │ ├── php83 │ │ └── conf.d │ │ │ ├── 00_opcache.ini │ │ │ ├── 00_xdebug.ini │ │ │ └── 50_settings.ini │ │ ├── profile │ │ └── supervisord │ │ └── conf.d │ │ └── supervisord.conf └── rootfs │ └── etc │ └── php83 │ ├── conf.d │ ├── 00_opcache.ini │ └── 50_settings.ini │ └── php-fpm.conf ├── LICENSE ├── README.md ├── doc ├── .gitkeep ├── Docker-compose.md ├── IDE.md ├── Pipeline.md ├── README.md ├── Schema.md └── images │ ├── folder-structure.png │ ├── mapping.png │ ├── remote-interpreter.png │ ├── tree.jpg │ └── tree.xml ├── makefile ├── somefile.tar └── test ├── docker-compose.yml ├── nginx ├── Dockerfile └── www.conf └── test.php /.all-contributorsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/alpine-php/HEAD/.all-contributorsrc -------------------------------------------------------------------------------- /.github/workflows/pr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/alpine-php/HEAD/.github/workflows/pr.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/alpine-php/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | -------------------------------------------------------------------------------- /7.1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/alpine-php/HEAD/7.1/Dockerfile -------------------------------------------------------------------------------- /7.1/devfs/etc/php7/conf.d/00_opcache.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/alpine-php/HEAD/7.1/devfs/etc/php7/conf.d/00_opcache.ini -------------------------------------------------------------------------------- /7.1/devfs/etc/php7/conf.d/50-setting.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/alpine-php/HEAD/7.1/devfs/etc/php7/conf.d/50-setting.ini -------------------------------------------------------------------------------- /7.1/devfs/etc/php7/conf.d/xdebug.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/alpine-php/HEAD/7.1/devfs/etc/php7/conf.d/xdebug.ini -------------------------------------------------------------------------------- /7.1/devfs/etc/profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/alpine-php/HEAD/7.1/devfs/etc/profile -------------------------------------------------------------------------------- /7.1/devfs/etc/supervisor/conf.d/supervisord.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/alpine-php/HEAD/7.1/devfs/etc/supervisor/conf.d/supervisord.conf -------------------------------------------------------------------------------- /7.1/rootfs/etc/php7/conf.d/00_opcache.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/alpine-php/HEAD/7.1/rootfs/etc/php7/conf.d/00_opcache.ini -------------------------------------------------------------------------------- /7.1/rootfs/etc/php7/conf.d/50-setting.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/alpine-php/HEAD/7.1/rootfs/etc/php7/conf.d/50-setting.ini -------------------------------------------------------------------------------- /7.1/rootfs/etc/php7/php-fpm.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/alpine-php/HEAD/7.1/rootfs/etc/php7/php-fpm.conf -------------------------------------------------------------------------------- /7.2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/alpine-php/HEAD/7.2/Dockerfile -------------------------------------------------------------------------------- /7.2/devfs/etc/php7/conf.d/00_opcache.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/alpine-php/HEAD/7.2/devfs/etc/php7/conf.d/00_opcache.ini -------------------------------------------------------------------------------- /7.2/devfs/etc/php7/conf.d/00_xdebug.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/alpine-php/HEAD/7.2/devfs/etc/php7/conf.d/00_xdebug.ini -------------------------------------------------------------------------------- /7.2/devfs/etc/php7/conf.d/50-setting.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/alpine-php/HEAD/7.2/devfs/etc/php7/conf.d/50-setting.ini -------------------------------------------------------------------------------- /7.2/devfs/etc/profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/alpine-php/HEAD/7.2/devfs/etc/profile -------------------------------------------------------------------------------- /7.2/devfs/etc/supervisor/conf.d/supervisord.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/alpine-php/HEAD/7.2/devfs/etc/supervisor/conf.d/supervisord.conf -------------------------------------------------------------------------------- /7.2/rootfs/etc/php7/conf.d/00_opcache.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/alpine-php/HEAD/7.2/rootfs/etc/php7/conf.d/00_opcache.ini -------------------------------------------------------------------------------- /7.2/rootfs/etc/php7/conf.d/50-setting.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/alpine-php/HEAD/7.2/rootfs/etc/php7/conf.d/50-setting.ini -------------------------------------------------------------------------------- /7.2/rootfs/etc/php7/php-fpm.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/alpine-php/HEAD/7.2/rootfs/etc/php7/php-fpm.conf -------------------------------------------------------------------------------- /7.3/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/alpine-php/HEAD/7.3/Dockerfile -------------------------------------------------------------------------------- /7.3/devfs/etc/php7/conf.d/00_opcache.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/alpine-php/HEAD/7.3/devfs/etc/php7/conf.d/00_opcache.ini -------------------------------------------------------------------------------- /7.3/devfs/etc/php7/conf.d/00_xdebug.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/alpine-php/HEAD/7.3/devfs/etc/php7/conf.d/00_xdebug.ini -------------------------------------------------------------------------------- /7.3/devfs/etc/php7/conf.d/50-setting.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/alpine-php/HEAD/7.3/devfs/etc/php7/conf.d/50-setting.ini -------------------------------------------------------------------------------- /7.3/devfs/etc/profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/alpine-php/HEAD/7.3/devfs/etc/profile -------------------------------------------------------------------------------- /7.3/devfs/etc/supervisor/conf.d/supervisord.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/alpine-php/HEAD/7.3/devfs/etc/supervisor/conf.d/supervisord.conf -------------------------------------------------------------------------------- /7.3/rootfs/etc/php7/conf.d/00_opcache.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/alpine-php/HEAD/7.3/rootfs/etc/php7/conf.d/00_opcache.ini -------------------------------------------------------------------------------- /7.3/rootfs/etc/php7/conf.d/50-setting.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/alpine-php/HEAD/7.3/rootfs/etc/php7/conf.d/50-setting.ini -------------------------------------------------------------------------------- /7.3/rootfs/etc/php7/php-fpm.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/alpine-php/HEAD/7.3/rootfs/etc/php7/php-fpm.conf -------------------------------------------------------------------------------- /7.4/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/alpine-php/HEAD/7.4/Dockerfile -------------------------------------------------------------------------------- /7.4/devfs/etc/php7/conf.d/00_opcache.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/alpine-php/HEAD/7.4/devfs/etc/php7/conf.d/00_opcache.ini -------------------------------------------------------------------------------- /7.4/devfs/etc/php7/conf.d/00_xdebug.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/alpine-php/HEAD/7.4/devfs/etc/php7/conf.d/00_xdebug.ini -------------------------------------------------------------------------------- /7.4/devfs/etc/php7/conf.d/50_settings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/alpine-php/HEAD/7.4/devfs/etc/php7/conf.d/50_settings.ini -------------------------------------------------------------------------------- /7.4/devfs/etc/profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/alpine-php/HEAD/7.4/devfs/etc/profile -------------------------------------------------------------------------------- /7.4/devfs/etc/supervisord/conf.d/supervisord.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/alpine-php/HEAD/7.4/devfs/etc/supervisord/conf.d/supervisord.conf -------------------------------------------------------------------------------- /7.4/rootfs/etc/php7/conf.d/00_opcache.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/alpine-php/HEAD/7.4/rootfs/etc/php7/conf.d/00_opcache.ini -------------------------------------------------------------------------------- /7.4/rootfs/etc/php7/conf.d/50_settings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/alpine-php/HEAD/7.4/rootfs/etc/php7/conf.d/50_settings.ini -------------------------------------------------------------------------------- /7.4/rootfs/etc/php7/php-fpm.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/alpine-php/HEAD/7.4/rootfs/etc/php7/php-fpm.conf -------------------------------------------------------------------------------- /8.0/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/alpine-php/HEAD/8.0/Dockerfile -------------------------------------------------------------------------------- /8.0/devfs/etc/php8/conf.d/00_opcache.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/alpine-php/HEAD/8.0/devfs/etc/php8/conf.d/00_opcache.ini -------------------------------------------------------------------------------- /8.0/devfs/etc/php8/conf.d/00_xdebug.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/alpine-php/HEAD/8.0/devfs/etc/php8/conf.d/00_xdebug.ini -------------------------------------------------------------------------------- /8.0/devfs/etc/php8/conf.d/50_settings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/alpine-php/HEAD/8.0/devfs/etc/php8/conf.d/50_settings.ini -------------------------------------------------------------------------------- /8.0/devfs/etc/profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/alpine-php/HEAD/8.0/devfs/etc/profile -------------------------------------------------------------------------------- /8.0/devfs/etc/supervisord/conf.d/supervisord.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/alpine-php/HEAD/8.0/devfs/etc/supervisord/conf.d/supervisord.conf -------------------------------------------------------------------------------- /8.0/rootfs/etc/php8/conf.d/00_opcache.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/alpine-php/HEAD/8.0/rootfs/etc/php8/conf.d/00_opcache.ini -------------------------------------------------------------------------------- /8.0/rootfs/etc/php8/conf.d/50_settings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/alpine-php/HEAD/8.0/rootfs/etc/php8/conf.d/50_settings.ini -------------------------------------------------------------------------------- /8.0/rootfs/etc/php8/php-fpm.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/alpine-php/HEAD/8.0/rootfs/etc/php8/php-fpm.conf -------------------------------------------------------------------------------- /8.1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/alpine-php/HEAD/8.1/Dockerfile -------------------------------------------------------------------------------- /8.1/devfs/etc/php81/conf.d/00_opcache.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/alpine-php/HEAD/8.1/devfs/etc/php81/conf.d/00_opcache.ini -------------------------------------------------------------------------------- /8.1/devfs/etc/php81/conf.d/00_xdebug.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/alpine-php/HEAD/8.1/devfs/etc/php81/conf.d/00_xdebug.ini -------------------------------------------------------------------------------- /8.1/devfs/etc/php81/conf.d/50_settings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/alpine-php/HEAD/8.1/devfs/etc/php81/conf.d/50_settings.ini -------------------------------------------------------------------------------- /8.1/devfs/etc/profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/alpine-php/HEAD/8.1/devfs/etc/profile -------------------------------------------------------------------------------- /8.1/devfs/etc/supervisord/conf.d/supervisord.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/alpine-php/HEAD/8.1/devfs/etc/supervisord/conf.d/supervisord.conf -------------------------------------------------------------------------------- /8.1/rootfs/etc/php81/conf.d/00_opcache.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/alpine-php/HEAD/8.1/rootfs/etc/php81/conf.d/00_opcache.ini -------------------------------------------------------------------------------- /8.1/rootfs/etc/php81/conf.d/50_settings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/alpine-php/HEAD/8.1/rootfs/etc/php81/conf.d/50_settings.ini -------------------------------------------------------------------------------- /8.1/rootfs/etc/php81/php-fpm.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/alpine-php/HEAD/8.1/rootfs/etc/php81/php-fpm.conf -------------------------------------------------------------------------------- /8.2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/alpine-php/HEAD/8.2/Dockerfile -------------------------------------------------------------------------------- /8.2/devfs/etc/php82/conf.d/00_opcache.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/alpine-php/HEAD/8.2/devfs/etc/php82/conf.d/00_opcache.ini -------------------------------------------------------------------------------- /8.2/devfs/etc/php82/conf.d/00_xdebug.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/alpine-php/HEAD/8.2/devfs/etc/php82/conf.d/00_xdebug.ini -------------------------------------------------------------------------------- /8.2/devfs/etc/php82/conf.d/50_settings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/alpine-php/HEAD/8.2/devfs/etc/php82/conf.d/50_settings.ini -------------------------------------------------------------------------------- /8.2/devfs/etc/profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/alpine-php/HEAD/8.2/devfs/etc/profile -------------------------------------------------------------------------------- /8.2/devfs/etc/supervisord/conf.d/supervisord.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/alpine-php/HEAD/8.2/devfs/etc/supervisord/conf.d/supervisord.conf -------------------------------------------------------------------------------- /8.2/rootfs/etc/php82/conf.d/00_opcache.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/alpine-php/HEAD/8.2/rootfs/etc/php82/conf.d/00_opcache.ini -------------------------------------------------------------------------------- /8.2/rootfs/etc/php82/conf.d/50_settings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/alpine-php/HEAD/8.2/rootfs/etc/php82/conf.d/50_settings.ini -------------------------------------------------------------------------------- /8.2/rootfs/etc/php82/php-fpm.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/alpine-php/HEAD/8.2/rootfs/etc/php82/php-fpm.conf -------------------------------------------------------------------------------- /8.3/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/alpine-php/HEAD/8.3/Dockerfile -------------------------------------------------------------------------------- /8.3/devfs/etc/php83/conf.d/00_opcache.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/alpine-php/HEAD/8.3/devfs/etc/php83/conf.d/00_opcache.ini -------------------------------------------------------------------------------- /8.3/devfs/etc/php83/conf.d/00_xdebug.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/alpine-php/HEAD/8.3/devfs/etc/php83/conf.d/00_xdebug.ini -------------------------------------------------------------------------------- /8.3/devfs/etc/php83/conf.d/50_settings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/alpine-php/HEAD/8.3/devfs/etc/php83/conf.d/50_settings.ini -------------------------------------------------------------------------------- /8.3/devfs/etc/profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/alpine-php/HEAD/8.3/devfs/etc/profile -------------------------------------------------------------------------------- /8.3/devfs/etc/supervisord/conf.d/supervisord.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/alpine-php/HEAD/8.3/devfs/etc/supervisord/conf.d/supervisord.conf -------------------------------------------------------------------------------- /8.3/rootfs/etc/php83/conf.d/00_opcache.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/alpine-php/HEAD/8.3/rootfs/etc/php83/conf.d/00_opcache.ini -------------------------------------------------------------------------------- /8.3/rootfs/etc/php83/conf.d/50_settings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/alpine-php/HEAD/8.3/rootfs/etc/php83/conf.d/50_settings.ini -------------------------------------------------------------------------------- /8.3/rootfs/etc/php83/php-fpm.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/alpine-php/HEAD/8.3/rootfs/etc/php83/php-fpm.conf -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/alpine-php/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/alpine-php/HEAD/README.md -------------------------------------------------------------------------------- /doc/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /doc/Docker-compose.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/alpine-php/HEAD/doc/Docker-compose.md -------------------------------------------------------------------------------- /doc/IDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/alpine-php/HEAD/doc/IDE.md -------------------------------------------------------------------------------- /doc/Pipeline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/alpine-php/HEAD/doc/Pipeline.md -------------------------------------------------------------------------------- /doc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/alpine-php/HEAD/doc/README.md -------------------------------------------------------------------------------- /doc/Schema.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/alpine-php/HEAD/doc/Schema.md -------------------------------------------------------------------------------- /doc/images/folder-structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/alpine-php/HEAD/doc/images/folder-structure.png -------------------------------------------------------------------------------- /doc/images/mapping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/alpine-php/HEAD/doc/images/mapping.png -------------------------------------------------------------------------------- /doc/images/remote-interpreter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/alpine-php/HEAD/doc/images/remote-interpreter.png -------------------------------------------------------------------------------- /doc/images/tree.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/alpine-php/HEAD/doc/images/tree.jpg -------------------------------------------------------------------------------- /doc/images/tree.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/alpine-php/HEAD/doc/images/tree.xml -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/alpine-php/HEAD/makefile -------------------------------------------------------------------------------- /somefile.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/alpine-php/HEAD/somefile.tar -------------------------------------------------------------------------------- /test/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/alpine-php/HEAD/test/docker-compose.yml -------------------------------------------------------------------------------- /test/nginx/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/alpine-php/HEAD/test/nginx/Dockerfile -------------------------------------------------------------------------------- /test/nginx/www.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/alpine-php/HEAD/test/nginx/www.conf -------------------------------------------------------------------------------- /test/test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorge07/alpine-php/HEAD/test/test.php --------------------------------------------------------------------------------