All Projects → codecasts → Php Alpine

codecasts / Php Alpine

PHP APK Repository for Alpine Linux

Programming Languages

shell
77523 projects

Projects that are alternatives of or similar to Php Alpine

Alpine Chrome
Chrome Headless docker images built upon alpine official image
Stars: ✭ 754 (+95.84%)
Mutual labels:  alpine, dockerfiles
Dockerfiles
Phalcon Dockerfiles used for internal purposes.
Stars: ✭ 145 (-62.34%)
Mutual labels:  alpine, dockerfiles
Dockerfiles
lots of dockerfiles, based on alpine
Stars: ✭ 69 (-82.08%)
Mutual labels:  alpine, dockerfiles
Dockerfile
some personally made dockerfile
Stars: ✭ 2,021 (+424.94%)
Mutual labels:  alpine, dockerfiles
Dockerfile
📦 Dockerfiles from WebDevOps for PHP, Apache and Nginx (with PHP5 and PHP7)
Stars: ✭ 1,169 (+203.64%)
Mutual labels:  alpine, dockerfiles
docker-library
Collection of Dockerfiles
Stars: ✭ 20 (-94.81%)
Mutual labels:  dockerfiles, alpine
docker-lemonldap
Docker LemonLDAP-NG Image w/S6 overlay, Zabbix Monitoring based on Debian or Alpine
Stars: ✭ 20 (-94.81%)
Mutual labels:  alpine
Dockerfiles
Optimized media, analytics and graphics software stack images. Use the dockerfile(s) in your project or as a recipe book for bare metal installation.
Stars: ✭ 98 (-74.55%)
Mutual labels:  dockerfiles
openssl-alpine
OpenSSL three tier certificate generator
Stars: ✭ 23 (-94.03%)
Mutual labels:  alpine
hypercorn-fastapi-docker
Docker image with Hypercorn for FastAPI apps in Python 3.7, 3.8, 3.9. Ready for HTTP2 and HTTPS
Stars: ✭ 18 (-95.32%)
Mutual labels:  alpine
Gluetun
VPN client in a thin Docker container for multiple VPN providers, written in Go, and using OpenVPN, DNS over TLS, with a few proxy servers built-in.
Stars: ✭ 346 (-10.13%)
Mutual labels:  alpine
Robox
The tools needed to robotically create/configure/provision a large number of operating systems, for a variety of hypervisors, using packer.
Stars: ✭ 303 (-21.3%)
Mutual labels:  alpine
docker-laravel-appengine
Laravel dockerized with official Google App Engine flexible php environment + swoole.
Stars: ✭ 66 (-82.86%)
Mutual labels:  alpine
addon-base-python
Docker Python base images (Alpine) - Home Assistant Community Add-ons
Stars: ✭ 12 (-96.88%)
Mutual labels:  alpine
docker-builds
📦 🐳 Dockerfiles and documentation on tools for public health bioinformatics
Stars: ✭ 84 (-78.18%)
Mutual labels:  dockerfiles
mmb
Set of Dockerfiles and assets related to them for building Docker images with different services
Stars: ✭ 34 (-91.17%)
Mutual labels:  alpine
Dockercheatsheet
🐋 Docker Cheat Sheet 🐋
Stars: ✭ 3,301 (+757.4%)
Mutual labels:  dockerfiles
docker-webtop
Ubuntu, Alpine, Arch, and Fedora based Webtop images, Linux in a web browser supporting popular desktop environments.
Stars: ✭ 498 (+29.35%)
Mutual labels:  alpine
docker-alpine-miniconda3
The smallest Docker image with Miniconda3 (Python 3.7) (~143MB)
Stars: ✭ 94 (-75.58%)
Mutual labels:  alpine
Endoflife.date
Informative site with EoL dates of everything
Stars: ✭ 296 (-23.12%)
Mutual labels:  alpine

PHP-ALPINE: Fresh PHP binaries APK repository for Alpine Linux.

Currently Supporting PHP 8.0, also, PHP 7.4 and PHP 7.3.

This project provides a simple alternative for running updated PHP binaries on Alpine Linux. We pack and release PHP versions as soon they are available on http://php.net. (At least, we try to.) Additionally, many PECL extensions are also available as packages as well.

Created by:

Support, Help and Faith:

Main Related Projects:

  • Ambientum by @hernandev Docker native solution for running Laravel projects. From Development to Production.

  • DDE by @whatwedo Local development environment toolset based on Docker


APK Repositories & Release Cycle

PHP 8.0

Alpine PHP End of Support Repository URL
Alpine 3.12 PHP 8.0 EOS dl.bintray.com/php-alpine/v3.12/php-8.0
Alpine 3.11 PHP 8.0 EOS dl.bintray.com/php-alpine/v3.11/php-8.0

PHP 7.4

Alpine PHP End of Support Repository URL
Alpine 3.12 PHP 7.4 EOS dl.bintray.com/php-alpine/v3.12/php-7.4
Alpine 3.11 PHP 7.4 EOS dl.bintray.com/php-alpine/v3.11/php-7.4
Alpine 3.10 PHP 7.4 EOS dl.bintray.com/php-alpine/v3.10/php-7.4

PHP 7.3

Alpine PHP End of Support Repository URL
Alpine 3.11 PHP 7.3 EOS dl.bintray.com/php-alpine/v3.11/php-7.3
Alpine 3.10 PHP 7.3 EOS dl.bintray.com/php-alpine/v3.10/php-7.3

Builds are available as soon as possible, and EOS is determined by:

  • If either PHP or Alpine release reaches end of support, the repository will stop receiving updates.
  • Support for both PHP and Alpine are estimated for around 2 years from release date.

Active support reference:

Replace examples below with desired Alpine and PHP versions.

Snippets

The following code snippets are intended for quick usage on either shell scripts or Dockerfile

Notice that main and community official repositories must be enabled.

Dockerfile

You may skip the ca-certificates part if you replace HTTPS by HTTP but you should not. PHP packages will eventually install ca-certificates anyway.

FROM alpine:3.11

ADD https://dl.bintray.com/php-alpine/key/php-alpine.rsa.pub /etc/apk/keys/php-alpine.rsa.pub

RUN apk --update-cache add ca-certificates && \
    echo "https://dl.bintray.com/php-alpine/v3.11/php-7.4" >> /etc/apk/repositories

# install php and some extensions
RUN apk add --update-cache \
    php \
    php-bz2 \
    php-json \
    php-mysql \
    php-any-other-available-package... 

Available Packages

This is the complete available packages list:

Package Name Type
php PHP Core
php-common PHP Core
php-fpm PHP Core
php-cgi PHP Core
php-apache2 PHP Core
php-doc PHP Core
php-dev PHP Core
-
php-sodium Core Extension
php-bcmath Core Extension
php-bz2 Core Extension
php-calendar Core Extension
php-ctype Core Extension
php-curl Core Extension
php-dba Core Extension
php-dom Core Extension
php-embed Core Extension
php-enchant Core Extension
php-exif Core Extension
php-ftp Core Extension
php-gd Core Extension
php-gettext Core Extension
php-gmp Core Extension
php-iconv Core Extension
php-imap Core Extension
php-intl Core Extension
php-json Core Extension
php-ldap Core Extension
php-litespeed Core Extension
php-mbstring Core Extension
php-mcrypt Core Extension
php-mysqli Core Extension
php-mysqlnd Core Extension
php-odbc Core Extension
php-opcache Core Extension
php-openssl Core Extension
php-pcntl Core Extension
php-pdo Core Extension
php-pdo_dblib Core Extension
php-pdo_mysql Core Extension
php-pdo_pgsql Core Extension
php-pdo_sqlite Core Extension
php-pear Core Extension
php-pgsql Core Extension
php-phar Core Extension
php-phpdbg Core Extension
php-posix Core Extension
php-pspell Core Extension
php-session Core Extension
php-shmop Core Extension
php-snmp Core Extension
php-soap Core Extension
php-sockets Core Extension
php-sqlite3 Core Extension
php-sysvmsg Core Extension
php-sysvsem Core Extension
php-tidy Core Extension
php-wddx Core Extension
php-xml Core Extension
php-xmlreader Core Extension
php-xmlrpc Core Extension
php-xsl Core Extension
php-zip Core Extension
php-zlib Core Extension
-
php-amqp Extra Extension
php-apcu Extra Extension
php-ast Extra Extension
php-ds Extra Extension
php-imagick Extra Extension
php-mailparse Extra Extension
php-memcached Extra Extension
php-mongodb Extra Extension
php-msgpack Extra Extension
php-pcov Extra Extension
php-phalcon Extra Extension
php-psr Extra Extension
php-redis Extra Extension
php-ssh2 Extra Extension
php-swoole Extra Extension
php-timecop Extra Extension
php-libsodium Extra Extension
php-scalar_objects Extra Extension
php-secp256k1 Extra Extension
php-xdebug Extra Extension
-
argon2 Extra Package
argon2-dev Extra Package
enchant Extra Package
enchant-doc Extra Package
enchant-dev Extra Package
libargon2 Extra Package
libsecp256k1 Extra Package

Life's good!

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].