Awesome
<p align="center"> <h1 align="center">The Devilbox</h1> </p>Quickstart | Examples | Features | The Devilbox Stack | Community | Contributing | Logos | License
<!-- [![Documentation Status](https://readthedocs.org/projects/devilbox/badge/?version=latest)](https://devilbox.readthedocs.io) [![Build Status](https://github.com/cytopia/devilbox/workflows/Lint/badge.svg)](https://github.com/cytopia/devilbox/actions?workflow=Lint) [![Build Status](https://github.com/cytopia/devilbox/workflows/Docs/badge.svg)](https://github.com/cytopia/devilbox/actions?workflow=Docs) [![PHP](https://github.com/cytopia/devilbox/actions/workflows/test-php.yml/badge.svg)](https://github.com/cytopia/devilbox/actions/workflows/test-php.yml) [![Httpd](https://github.com/cytopia/devilbox/actions/workflows/test-httpd.yml/badge.svg)](https://github.com/cytopia/devilbox/actions/workflows/test-httpd.yml) [![MySQL](https://github.com/cytopia/devilbox/actions/workflows/test-mysql.yml/badge.svg)](https://github.com/cytopia/devilbox/actions/workflows/test-mysql.yml) [![Memcd](https://github.com/cytopia/devilbox/actions/workflows/test-memcd.yml/badge.svg)](https://github.com/cytopia/devilbox/actions/workflows/test-memcd.yml) [![Mongo](https://github.com/cytopia/devilbox/actions/workflows/test-mongo.yml/badge.svg)](https://github.com/cytopia/devilbox/actions/workflows/test-mongo.yml) [![PgSQL](https://github.com/cytopia/devilbox/actions/workflows/test-pgsql.yml/badge.svg)](https://github.com/cytopia/devilbox/actions/workflows/test-pgsql.yml) [![Redis](https://github.com/cytopia/devilbox/actions/workflows/test-redis.yml/badge.svg)](https://github.com/cytopia/devilbox/actions/workflows/test-redis.yml) --> <!-- <img width="200" style="width:200px;" src="docs/_includes/figures/https/https-ssl-address-bar.png" /><br/> <small><sub>Support for <a href="https://devilbox.readthedocs.io/en/latest/intermediate/setup-valid-https.html">valid https</a> out of the box.</sub></small> -->The Devilbox is a versatile and highly customisable zero-conf PHP Docker stack supporting LEMP and MEAN as well as Websockets, Node, Python and Golang via automated Reverse Proxy integraton.
<br/>
<br/>
The main goal is to provide a reproducible development environment that runs on all major platforms and is able to switch and combine any version you need.
It supports an unlimited number of projects for which vhosts, SSL certificates and DNS records are created automatically.
Email interception and popular development tools will be at your service as well. Configuration is not necessary, as everything is already pre-setup.
<br/>
<br/>
All created projects (frontend or backend) will be able to communicate with one another to support the emulation of a complete microservice architecture or an API landscape.
<br/>
<br/>
Available Architectures: amd64
, arm64
<br/>
Available PHP Versions: 5.2
, 5.3
, 5.4
, 5.5
, 5.6
, 7.0
, 7.1
, 7.2
, 7.3
, 7.4
, 8.0
, 8.1
, 8.2
๐ Quickstart
<details><summary>โ System Requirements</summary> <br/> The Devilbox runs on all major operating systems and its only requirement is <code>Docker</code> and <code>Docker Compose</code>:<br/><br/><br/>
</details>Be up and running in 2 minutes.
<details style="margin-bottom:0px;"><summary>๐ Install and Run: Linux</summary> <h3>Linux: Install</h3>- Download the Devilbox
git clone https://github.com/cytopia/devilbox
- Enter the Devilbox git directory
cd devilbox
- Copy the default environment file
cp env-example .env
<br/><strong>:warning: Important: </strong> Ensure that nothing is listening on port <code>80</code> and <code>443</code> on your host system. These ports are required by the Devilbox webserver.
- Start
httpd
,php
andmysql
container# This step may take a few minutes as required # Docker images have to be pulled initially. # Inside the Devilbox git directory docker-compose up httpd php mysql
- Visit http://localhost in your browser
- Download the Devilbox
git clone https://github.com/cytopia/devilbox
- Enter the Devilbox git directory
cd devilbox
- Copy the default environment file
cp env-example .env
<br/><strong>:warning: Important: </strong> Ensure that nothing is listening on port <code>80</code> and <code>443</code> on your host system. These ports are required by the Devilbox webserver.
- Start
httpd
,php
andmysql
container# This step may take a few minutes as required # Docker images have to be pulled initially. # Inside the Devilbox git directory docker-compose up httpd php mysql
- Visit http://localhost in your browser
- Clone <code>https://github.com/cytopia/devilbox</code> to <code>C:\devilbox</code> with <a href="https://git-scm.com/downloads">Git for Windows</a>
- Copy <code>C:\devilbox\env-example</code> to <code>C:\devilbox.env</code>
<strong>:warning: Important: </strong> Ensure that nothing is listening on port <code>80</code> and <code>443</code> on your host system. These ports are required by the Devilbox webserver.
<a href="https://devilbox.readthedocs.io/en/latest/howto/terminal/open-terminal-on-win.html">Open a terminal on Windows</a> and start httpd
, php
and mysql
container:
<br/>
- Start
httpd
,php
andmysql
container# This step may take a few minutes as required # Docker images have to be pulled initially. # Inside the Devilbox git directory docker-compose up httpd php mysql
- Visit http://localhost in your browser
The Devilbox allows you to work on your projects on the host system as well as inside the work container. Your project files will be available at both locations. The workflow ususally is:
- Use your prefered IDE (e.g. PhpStorm) on your host system to add and alter files
- Work inside the container to run common cli tools such as
node
,composer
,npm
,phpcs
,webpack
and many more.
To enter the work container, simply run ./shell.sh
- On Linux, MacOS and Windows with WSL2
# Inside the Devilbox git directory ./shell.sh
- On Windows without WSL2
# Inside the Devilbox git directory ./shell.bat
๐ก Examples
Create your first project:
<details><summary>Example: Dummy Project</summary>- Start the container you need:
docker-compose up httpd php mysql
- Enter the work container:
./shell.sh
- Navigate to
/shared/httpd
:cd /shared/httpd
- Create your project directory
mkdir dummy-project
- Visit http://localhost/vhosts.php<br/>
You will notice that you need to create a
htdocs/
directory<br/> <img src="docs/img/example_01-vhost.png" /> - Create
htdocs/
directory# Navigate to your project directory cd /shared/httpd/dummy-project # Create htdocs dir mkdir htdocs
- Visit http://localhost/vhosts.php<br/> You will see that everything is now setup and your project is created and available<br/> <img src="docs/img/example_02-vhost.png" />
- Create an
index.php
file# Navigate to your project htdocs directory cd /shared/httpd/dummy-project/htdocs # Create a simple index.php file echo '<?php echo "it works";' > index.php
- View your project in the browser: http://dummy-project.dvl.to
Find all the examples in the documentation:
<a target="_blank" title="How to Setup CakePHP on the Devilbox" href="https://devilbox.readthedocs.io/en/latest/examples/setup-cakephp.html"><img width="48" style="width:48px" src="docs/img/logo_fw/cake.png" alt="Devilbox" /></a> <a target="_blank" title="How to Setup CodeIgniter on the Devilbox" href="https://devilbox.readthedocs.io/en/latest/examples/setup-codeigniter.html"><img width="48" style="width:48px" src="docs/img/logo_fw/codeigniter.png" alt="Devilbox" /></a> <a target="_blank" title="How to Setup Contao on the Devilbox" href="https://devilbox.readthedocs.io/en/latest/examples/setup-contao.html"><img width="48" style="width:48px" src="docs/img/logo_fw/contao.png" alt="Devilbox" /></a> <a target="_blank" title="How to Setup CraftCMS on the Devilbox" href="https://devilbox.readthedocs.io/en/latest/examples/setup-craftcms.html"><img width="48" style="width:48px" src="docs/img/logo_fw/craftcms.png" alt="Devilbox" /></a> <a target="_blank" title="How to Setup Drupal on the Devilbox" href="https://devilbox.readthedocs.io/en/latest/examples/setup-drupal.html"><img width="48" style="width:48px" src="docs/img/logo_fw/drupal.png" alt="Devilbox" /></a> <a target="_blank" title="How to Setup Joomla on the Devilbox" href="https://devilbox.readthedocs.io/en/latest/examples/setup-joomla.html"><img width="48" style="width:48px" src="docs/img/logo_fw/joomla.png" alt="Devilbox" /></a> <a target="_blank" title="How to Setup Laravel on the Devilbox" href="https://devilbox.readthedocs.io/en/latest/examples/setup-laravel.html"><img width="48" style="width:48px" src="docs/img/logo_fw/laravel.png" alt="Devilbox" /></a> <a target="_blank" title="How to Setup Magento 2 on the Devilbox" href="https://devilbox.readthedocs.io/en/latest/examples/setup-magento2.html"><img width="48" style="width:48px" src="docs/img/logo_fw/magento.png" alt="Devilbox" /></a> <a target="_blank" title="How to Setup PhalconPHP on the Devilbox" href="https://devilbox.readthedocs.io/en/latest/examples/setup-phalcon.html"><img width="48" style="width:48px" src="docs/img/logo_fw/phalcon.png" alt="Devilbox" /></a> <a target="_blank" title="How to Setup PhotonCMS on the Devilbox" href="https://devilbox.readthedocs.io/en/latest/examples/setup-photon-cms.html"><img width="48" style="width:48px" src="docs/img/logo_fw/photoncms.png" alt="Devilbox" /></a> <a target="_blank" title="How to Setup PrestaShop on the Devilbox" href="https://devilbox.readthedocs.io/en/latest/examples/setup-presta-shop.html"><img width="48" style="width:48px" src="docs/img/logo_fw/prestashop.png" alt="Devilbox" /></a> <a target="_blank" title="How to Setup ProcessWire on the Devilbox" href="https://devilbox.readthedocs.io/en/latest/examples/setup-processwire.html"><img width="48" style="width:48px" src="docs/img/logo_fw/processwire.png" alt="Devilbox" /></a> <a target="_blank" title="How to Setup Shopware on the Devilbox" href="https://devilbox.readthedocs.io/en/latest/examples/setup-shopware.html"><img width="48" style="width:48px" src="docs/img/logo_fw/shopware.png" alt="Devilbox" /></a> <a target="_blank" title="How to Setup Symfony on the Devilbox" href="https://devilbox.readthedocs.io/en/latest/examples/setup-symfony.html"><img width="48" style="width:48px" src="docs/img/logo_fw/symfony.png" alt="Devilbox" /></a> <a target="_blank" title="How to Setup Typo3 on the Devilbox" href="https://devilbox.readthedocs.io/en/latest/examples/setup-typo3.html"><img width="48" style="width:48px" src="docs/img/logo_fw/typo3.png" alt="Devilbox" /></a> <a target="_blank" title="How to Setup WordPress on the Devilbox" href="https://devilbox.readthedocs.io/en/latest/examples/setup-wordpress.html"><img width="48" style="width:48px" src="docs/img/logo_fw/wordpress.png" alt="Devilbox" /></a> <a target="_blank" title="How to Setup Yii on the Devilbox" href="https://devilbox.readthedocs.io/en/latest/examples/setup-yii.html"><img width="48" style="width:48px" src="docs/img/logo_fw/yii.png" alt="Devilbox" /></a> <a target="_blank" title="How to Setup Zend on the Devilbox" href="https://devilbox.readthedocs.io/en/latest/examples/setup-zend.html"><img width="48" style="width:48px" src="docs/img/logo_fw/zend.png" alt="Devilbox" /></a>
</details>:star: Features
The Devilbox tries to be a zero-configuration stack out of the box and has automated all the boring tasks. Additionally it provides common feature required for everyday work.
<table> <tr valign="top" style="vertical-align:top"> <td> <strong>Automation</strong><br/> :star: <code>Automated Project creation</code><br/> :star: <code>Automated SSL</code><br/> :star: <code>Automated DNS</code><br/> :star: <code>Host permission sync</code><br/> </td> <td> <strong>Modes</strong><br/> :star: <code>Static files</code><br/> :star: <code>PHP files</code><br/> :star: <code>Reverse Proxy</code><br/> :star: <code>Websockets</code><br/> </td> <td> <strong>Backends</strong><br/> :star: <code>PHP-FPM</code><br/> :star: <code>NodeJS</code><br/> :star: <code>Python</code><br/> :star: <code>Golang</code><br/> :star: <code>...</code><br/> </td> <td> <strong>Profiling</strong><br/> :star: <code>Blackfire</code><br/> :star: <code>Xdebug</code><br/> :star: <code>XHProf</code><br/> </td> </tr> <tr valign="top" style="vertical-align:top"> <td> <strong>Projects</strong><br/> :star: <code>Unlimited Projects</code><br/> :star: <code>Inter-Project Communication</code><br/> :star: <code>Custom Project domains</code><br/> :star: <code>Valid browser HTTPS</code><br/> </td> <td> <strong>Intranet</strong><br/> :star: <code>Virtual Hosts</code><br/> :star: <code>C&C</code><br/> :star: <code>Email Reader</code><br/> :star: <code>OpCache Gui</code><br/> </td> <td> <strong>Batteries</strong><br/> :star: <code>Adminer</code><br/> :star: <code>phpMyAdmin</code><br/> :star: <code>phpPgAdmin</code><br/> :star: <code>phpRedMind</code><br/> </td> <td> <strong>Services</strong><br/> :star: <code>SQL</code><br/> :star: <code>NoSQL</code><br/> :star: <code>Cache</code><br/> :star: <code>...</code><br/> </td> </tr> </table> <h2><img id="the-devilbox-stack" width="20" src="https://github.com/devilbox/artwork/raw/master/submissions_logo/cytopia/01/png/logo_64_trans.png" alt="The Devilbox Stack" /> The Devilbox Stack</h2>The Devilbox aims to be a swiss army knife for local development by providing you all the services you would ever need. To get an idea about the architecture behind it and to also see what's available have a look at its components and usage.
<table width="100%" style="width:100%;display:table"> <tr> <td width="30%" valign="top" style="width:30%; vertical-align:top;"> <h4>Smallest stack</h4> <p>This is the smallest possible and fully functional stack you can run</p> </td> <td width="70%" valign="top" style="width:70%; vertical-align:top;"> <h4>Full stack</h4> <p>To better understand what is actually possible have a look at the full example</p> </td> </tr> <tr> <td> <img width="300" style="width:300px" title="Devilbox stack" src="https://raw.githubusercontent.com/devilbox/artwork/master/submissions_diagrams/cytopia/02/png/architecture-small.png" /> </td> <td> <img title="Devilbox stack" src="https://raw.githubusercontent.com/devilbox/artwork/master/submissions_diagrams/cytopia/01/png/architecture-full.png" /> </td> </tr> </table> <details style="margin-bottom: 0px;"><summary><strong>๐ป Modes of operation</strong></summary> <h3>Modes of operation</h3>You can startup and operate the Devilbox in three different ways via docker-compose
:
- Selective startup
- On Demand (add/remove container while running)
- Full startup
Selective startup
If you already know what kind of container you need before starting the Devilbox, you can just specify them explicitly.
# Inside the Devilbox git directory start httpd php mysql and redis
docker-compose up httpd php mysql redis
The Intranet will show you what container you have currently running:
On Demand
If the Devilbox is already started you can attach more container on-the-fly,
# Inside the Devilbox git directory attach mongo and memcached
docker-compose up mongo memcd
You can also shut down specific containers that you do not need
# Inside the Devilbox git directory shutdown redis
docker-compose stop redis
Full startup
If you just want to start everything, run docker-compose up
without any arguments
# Inside the Devilbox git directory start them all
docker-compose up
The Intranet will show you what container you have currently running:
If you prefer a visual guide, have a look at the two introduction videos on Youtube: <br/> <br/> <a target="_blank" title="Devilbox - Setup and Workflow" href="https://www.youtube.com/watch?v=reyZMyt2Zzo"><img title="Devilbox - Setup and Workflow" src="docs/img/devilbox_01-setup-and-workflow.png" /></a> <a target="_blank" title="Devilbox - Email Interception" href="https://www.youtube.com/watch?v=e-U-C5WhxGY"><img title="Devilbox - Email Interception" src="docs/img/devilbox_02-email-catch-all.png" /></a>
<br/> </details> <details style="margin-bottom: 0px;"><summary><strong>๐ Available Container</strong></summary> <h3>Available Container</h3>Documentation: Install the Devilbox | Start the Devilbox | .env file
The following table lists all integrated and pre-configured Docker container shipped by the Devilbox. Only the webserver and PHP container are mandatory, all others are optional and don't need to be started.
Each of them is also available in multiple different versions in order to reflect your exact desired environment.
Accel | Web | App | SQL | NoSQL | Queue / Search | ELK | Utils |
---|---|---|---|---|---|---|---|
HAProxy | Apache | PHP | MariaDB | Memcached | RabbitMQ | ElasticSearch | Bind |
Varnish | Nginx | Python (Flask) | MySQL | MongoDB | Solr | Logstash | Blackfire |
PerconaDB | Redis | Kibana | MailHog | ||||
PostgreSQL | Ngrok |
<br/> </details> <details style="margin-bottom: 0px;"><summary><strong>๐ Version Matrix</strong></summary> <h3>Version Matrix</h3>Documentation: Available Container
Every single attachable container comes with many different versions. In order to select the desired version for a container, simply edit the .env
file and uncomment the version of choice. Any combination is possible.
Run different versions
<table> <thead> <tr> <th>Apache</th> <th>Nginx</th> <th>PHP</th> <th>MySQL</th> <th>MariaDB</th> <th>Percona</th> <th>PgSQL</th> <th>Redis</th> <th>Memcached</th> <th>MongoDB</th> </tr> </thead> <tbody> <tr> <td><a target="_blank" title="Apache 2.2" href="https://github.com/devilbox/docker-apache-2.2">2.2</a></td> <td><a target="_blank" title="Nginx stable" href="https://github.com/devilbox/docker-nginx-stable">stable</a></td> <td><a target="_blank" title="PHP 5.2" href="https://github.com/devilbox/docker-php-fpm">5.2</a><sup>[1]</sup></td> <td><a target="_blank" title="MySQL 5.5" href="https://github.com/devilbox/docker-mysql">5.5</a></td> <td><a target="_blank" title="MariaDB 5.5" href="https://github.com/devilbox/docker-mysql">5.5</a></td> <td><a target="_blank" title="PerconaDB 5.5" href="https://github.com/devilbox/docker-mysql">5.5</a></td> <td><a target="_blank" title="PgSQL 9.0" href="https://github.com/docker-library/postgres">9.0</a></td> <td><a target="_blank" title="Redis 2.8" href="https://github.com/docker-library/redis">2.8</a></td> <td><a target="_blank" title="Memcached 1.4" href="https://github.com/docker-library/memcached">1.4</a></td> <td><a target="_blank" title="MongoDB 2.8" href="https://github.com/docker-library/mongo">2.8</a></td> </tr> <tr> <td><a target="_blank" title="Apache 2.4" href="https://github.com/devilbox/docker-apache-2.4">2.4</a></td> <td><a target="_blank" title="Nginx mainline" href="https://github.com/devilbox/docker-nginx-mainline">mainline</a></td> <td><a target="_blank" title="PHP 5.3" href="https://github.com/devilbox/docker-php-fpm">5.3</a></td> <td><a target="_blank" title="MySQL 5.6" href="https://github.com/devilbox/docker-mysql">5.6</a></td> <td><a target="_blank" title="MariaDB 10.0" href="https://github.com/devilbox/docker-mysql">10.0</a></td> <td><a target="_blank" title="PerconaDB 5.6" href="https://github.com/devilbox/docker-mysql">5.6</a></td> <td><a target="_blank" title="PgSQL 9.1" href="https://github.com/docker-library/postgres">9.1</a></td> <td><a target="_blank" title="Redis 3.0" href="https://github.com/docker-library/redis">3.0</a></td> <td><a target="_blank" title="Memcached 1.5" href="https://github.com/docker-library/memcached">1.5</a></td> <td><a target="_blank" title="MongoDB 3.0" href="https://github.com/docker-library/mongo">3.0</a></td> </tr> <tr> <td></td> <td></td> <td><a target="_blank" title="PHP 5.4" href="https://github.com/devilbox/docker-php-fpm">5.4</a></td> <td><a target="_blank" title="MySQL 5.7" href="https://github.com/devilbox/docker-mysql">5.7</a></td> <td><a target="_blank" title="MariaDB 10.1" href="https://github.com/devilbox/docker-mysql">10.1</a></td> <td><a target="_blank" title="PerconaDB 5.7" href="https://github.com/devilbox/docker-mysql">5.7</a></td> <td><a target="_blank" title="PgSQL 9.2" href="https://github.com/docker-library/postgres">9.2</a></td> <td><a target="_blank" title="Redis 3.2" href="https://github.com/docker-library/redis">3.2</a></td> <td><a target="_blank" title="Memcached 1.6" href="https://github.com/docker-library/memcached">1.6</a></td> <td><a target="_blank" title="MongoDB 3.2" href="https://github.com/docker-library/mongo">3.2</a></td> </tr> <tr> <td></td> <td></td> <td><a target="_blank" title="PHP 5.5" href="https://github.com/devilbox/docker-php-fpm">5.5</a></td> <td><a target="_blank" title="MySQL 8.0" href="https://github.com/devilbox/docker-mysql">8.0</a></td> <td><a target="_blank" title="MariaDB 10.2" href="https://github.com/devilbox/docker-mysql">10.2</a></td> <td><a target="_blank" title="PerconaDB 8.0" href="https://github.com/devilbox/docker-mysql">8.0</a></td> <td><a target="_blank" title="PgSQL 9.3" href="https://github.com/docker-library/postgres">9.3</a></td> <td><a target="_blank" title="Redis 4.0" href="https://github.com/docker-library/redis">4.0</a></td> <td><a target="_blank" title="Memcached latest" href="https://github.com/docker-library/memcached">latest</a></td> <td><a target="_blank" title="MongoDB 3.4" href="https://github.com/docker-library/mongo">3.4</a></td> </tr> <tr> <td></td> <td></td> <td><a target="_blank" title="PHP 5.6" href="https://github.com/devilbox/docker-php-fpm">5.6</a></td> <td></td> <td><a target="_blank" title="MariaDB 10.3" href="https://github.com/devilbox/docker-mysql">10.3</a></td> <td></td> <td><a target="_blank" title="PgSQL 9.4" href="https://github.com/docker-library/postgres">9.4</a></td> <td><a target="_blank" title="Redis 5.0" href="https://github.com/docker-library/redis">5.0</a></td> <td></td> <td><a target="_blank" title="MongoDB 3.6" href="https://github.com/docker-library/mongo">3.6</a></td> </tr> <tr> <td></td> <td></td> <td><a target="_blank" title="PHP 7.0" href="https://github.com/devilbox/docker-php-fpm">7.0</a></td> <td></td> <td><a target="_blank" title="MariaDB 10.4" href="https://github.com/devilbox/docker-mysql">10.4</a></td> <td></td> <td><a target="_blank" title="PgSQL 9.5" href="https://github.com/docker-library/postgres">9.5</a></td> <td><a target="_blank" title="Redis 6.0" href="https://github.com/docker-library/redis">6.0</a></td> <td></td> <td><a target="_blank" title="MongoDB 4.0" href="https://github.com/docker-library/mongo">4.0</a></td> </tr> <tr> <td></td> <td></td> <td><a target="_blank" title="PHP 7.1" href="https://github.com/devilbox/docker-php-fpm">7.1</a></td> <td></td> <td><a target="_blank" title="MariaDB 10.5" href="https://github.com/devilbox/docker-mysql">10.5</a></td> <td></td> <td><a target="_blank" title="PgSQL 9.6" href="https://github.com/docker-library/postgres">9.6</a></td> <td><a target="_blank" title="Redis 6.2" href="https://github.com/docker-library/redis">6.2</a></td> <td></td> <td><a target="_blank" title="MongoDB 4.2" href="https://github.com/docker-library/mongo">4.2</a></td> </tr> <tr> <td></td> <td></td> <td><a target="_blank" title="PHP 7.2" href="https://github.com/devilbox/docker-php-fpm">7.2</a></td> <td></td> <td><a target="_blank" title="MariaDB 10.6" href="https://github.com/devilbox/docker-mysql">10.6</a></td> <td></td> <td><a target="_blank" title="PgSQL 10" href="https://github.com/docker-library/postgres">10</a></td> <td><a target="_blank" title="Redis 7.0" href="https://github.com/docker-library/redis">7.0</a></td> <td></td> <td><a target="_blank" title="MongoDB 4.4" href="https://github.com/docker-library/mongo">4.4</a></td> </tr> <tr> <td></td> <td></td> <td><a target="_blank" title="PHP 7.3" href="https://github.com/devilbox/docker-php-fpm">7.3</a></td> <td></td> <td><a target="_blank" title="MariaDB 10.7" href="https://github.com/devilbox/docker-mysql">10.7</a></td> <td></td> <td><a target="_blank" title="PgSQL 11" href="https://github.com/docker-library/postgres">11</a></td> <td><a target="_blank" title="Redis latest" href="https://github.com/docker-library/redis">latest</a></td> <td></td> <td><a target="_blank" title="MongoDB 5.0" href="https://github.com/docker-library/mongo">5.0</a></td> </tr> <tr> <td></td> <td></td> <td><a target="_blank" title="PHP 7.4" href="https://github.com/devilbox/docker-php-fpm">7.4</a></td> <td></td> <td><a target="_blank" title="MariaDB 10.8" href="https://github.com/devilbox/docker-mysql">10.8</a></td> <td></td> <td><a target="_blank" title="PgSQL 12" href="https://github.com/docker-library/postgres">12</a></td> <td></td> <td></td> <td><a target="_blank" title="MongoDB latest" href="https://github.com/docker-library/mongo">latest</a></td> </tr> <tr> <td></td> <td></td> <td><a target="_blank" title="PHP 8.0" href="https://github.com/devilbox/docker-php-fpm">8.0</a></td> <td></td> <td><a target="_blank" title="MariaDB 10.9" href="https://github.com/devilbox/docker-mysql">10.9</a></td> <td></td> <td><a target="_blank" title="PgSQL ..." href="https://github.com/docker-library/postgres">...</a></td> <td></td> <td></td> <td></td> </tr> <tr> <td></td> <td></td> <td><a target="_blank" title="PHP 8.1" href="https://github.com/devilbox/docker-php-fpm">8.1</a></td> <td></td> <td><a target="_blank" title="MariaDB 10.10" href="https://github.com/devilbox/docker-mysql">10.10</a></td> <td></td> <td><a target="_blank" title="PgSQL 15" href="https://github.com/docker-library/postgres">15</a></td> <td></td> <td></td> <td></td> </tr> <tr> <td></td> <td></td> <td><a target="_blank" title="PHP 8.2" href="https://github.com/devilbox/docker-php-fpm">8.2</a><!-- <sup>[2]</sup> --></td> <td></td> <td></td> <td></td> <td><a target="_blank" title="PgSQL latest" href="https://github.com/docker-library/postgres">latest</a></td> <td></td> <td></td> <td></td> </tr> </tbody> </table> <br/> <small><strong><sup>[1]</sup></strong> <strong>PHP 5.2</strong> is available to use, but it is not officially supported. The Devilbox intranet does not work with this version as PHP 5.2 does not support namespaces. Furthermore PHP 5.2 does only work with Apache 2.4, Nginx stable and Nginx mainline. It does not work with Apache 2.2. Use at your own risk.</small> <!-- <small><strong><sup>[2]</sup></strong> <strong>PHP 8.2</strong> is an upcoming unreleased versions of PHP, which is directly built out of their [official git branches](https://github.com/php/php-src/) every night to assure you will leverage their latest features.</small> -->Documentation: Change container versions
Additional services
Additionally to the default stack, there are a variety of other services that can be easily enabled and started.
<table> <thead> <tr> <th>Python (Flask)</th> <th>Blackfire</th> <th>ELK</th> <th>MailHog</th> <th>Ngrok</th> <th>RabbitMQ</th> <th>Solr</th> <th>HAProxy</th> <th>Varnish</th> </tr> </thead> <tbody> <tr> <td><a target="_blank" title="Python 2.7 " href="https://github.com/devilbox/docker-python-flask">2.7</a></td> <td><a target="_blank" title="Blackfire 1.8" href="https://github.com/blackfireio/docker">1.8</a></td> <td><a target="_blank" title="ELK stack" href="https://www.docker.elastic.co">5.x.y</a></td> <td><a target="_blank" title="MailHog v1.0.0" href="https://github.com/mailhog/MailHog">v1.0.0</a></td> <td><a target="_blank" title="Ngrok 2.x" href="https://github.com/devilbox/docker-ngrok">2.x</a></td> <td><a target="_blank" title="RabbitMQ 3.6" href="https://github.com/rabbitmq/rabbitmq-server">3.6</a></td> <td><a target="_blank" title="Solr 5" href="https://github.com/apache/lucene-solr">5</a></td> <td><a target="_blank" title="HAProxy 1.x" href="https://github.com/devilbox/docker-haproxy">1.x</a></td> <td><a target="_blank" title="Varnish 4" href="https://github.com/devilbox/docker-varnish">4</a></td> </tr> <tr> <td>...</td> <td>...</td> <td><a target="_blank" title="ELK stack" href="https://www.docker.elastic.co">6.x.y</a></td> <td><a target="_blank" title="MailHog latest" href="https://github.com/mailhog/MailHog">latest</a></td> <td></td> <td><a target="_blank" title="RabbitMQ 3.7" href="https://github.com/rabbitmq/rabbitmq-server">3.7</a></td> <td><a target="_blank" title="Solr 6" href="https://github.com/apache/lucene-solr">6</a></td> <td></td> <td><a target="_blank" title="Varnish 5" href="https://github.com/devilbox/docker-varnish">5</a></td> </tr> <tr> <td><a target="_blank" title="Python 3.7 " href="https://github.com/devilbox/docker-python-flask">3.7</a></td> <td><a target="_blank" title="Blackfire 1.18.0" href="https://github.com/blackfireio/docker">1.18.0</a></td> <td><a target="_blank" title="ELK stack" href="https://www.docker.elastic.co">7.x.y</a></td> <td></td> <td></td> <td><a target="_blank" title="RabbitMQ latest" href="https://github.com/rabbitmq/rabbitmq-server">latest</a></td> <td><a target="_blank" title="Solr 7" href="https://github.com/apache/lucene-solr">7</a></td> <td></td> <td><a target="_blank" title="Varnish 6" href="https://github.com/devilbox/docker-varnish">6</a></td> </tr> <tr> <td><a target="_blank" title="Python 3.8 " href="https://github.com/devilbox/docker-python-flask">3.8</a></td> <td><a target="_blank" title="Blackfire latest" href="https://github.com/blackfireio/docker">latest</a></td> <td></td> <td></td> <td></td> <td></td> <td><a target="_blank" title="Solr latest" href="https://github.com/apache/lucene-solr">latest</a></td> <td></td> <td><a target="_blank" title="Varnish latest" href="https://github.com/devilbox/docker-varnish">latest</a></td> </tr> </tbody> </table> <br/><br/> </details> <details><summary><strong>โ๏ธ Available PHP Extensions</strong></summary> <h3>Available PHP Extensions</h3>Documentation: Enable custom container
The Devilbox is a development stack, so it is made sure that a lot of PHP modules are available out of the box in order to work with many different frameworks.
<br/> <!-- modules -->
- Core enabled (cannot be disabled): โ
- Enabled (can be disabled): ๐ธ
- Available, but disabled (can be enabled): d
Modules | <sup>PHP 5.2</sup> | <sup>PHP 5.3</sup> | <sup>PHP 5.4</sup> | <sup>PHP 5.5</sup> | <sup>PHP 5.6</sup> | <sup>PHP 7.0</sup> | <sup>PHP 7.1</sup> | <sup>PHP 7.2</sup> | <sup>PHP 7.3</sup> | <sup>PHP 7.4</sup> | <sup>PHP 8.0</sup> | <sup>PHP 8.1</sup> | <sup>PHP 8.2</sup> |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
<sup>amqp</sup> | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ |
<sup>apc</sup> | ๐ธ | ๐ธ | ๐ธ | ๐ธ | |||||||||
<sup>apcu</sup> | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | |
<sup>bcmath</sup> | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ |
<sup>blackfire</sup> | d | d | d | d | d | d | d | ||||||
<sup>bz2</sup> | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ |
<sup>calendar</sup> | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ |
<sup>ctype</sup> | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ |
<sup>curl</sup> | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ |
<sup>date</sup> | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ |
<sup>dba</sup> | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ |
<sup>dom</sup> | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ |
<sup>enchant</sup> | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ||
<sup>ereg</sup> | โ | โ | โ | โ | |||||||||
<sup>exif</sup> | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ |
<sup>FFI</sup> | ๐ธ | โ | โ | โ | |||||||||
<sup>fileinfo</sup> | ๐ธ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ |
<sup>filter</sup> | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ |
<sup>ftp</sup> | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ |
<sup>gd</sup> | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ |
<sup>gettext</sup> | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ |
<sup>gmp</sup> | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | |
<sup>hash</sup> | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ |
<sup>iconv</sup> | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ |
<sup>igbinary</sup> | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ |
<sup>imagick</sup> | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | |||
<sup>imap</sup> | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ |
<sup>interbase</sup> | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ||||
<sup>intl</sup> | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ |
<sup>ioncube</sup> | d | d | d | d | d | d | d | ||||||
<sup>json</sup> | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ |
<sup>ldap</sup> | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ |
<sup>libxml</sup> | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ |
<sup>lz4</sup> | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | |||||
<sup>lzf</sup> | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | |||||
<sup>mbstring</sup> | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ |
<sup>mcrypt</sup> | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ||
<sup>memcache</sup> | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ |
<sup>memcached</sup> | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ |
<sup>mhash</sup> | โ | โ | โ | โ | โ | ||||||||
<sup>mongo</sup> | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ||||||||
<sup>mongodb</sup> | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | |
<sup>msgpack</sup> | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ |
<sup>mysql</sup> | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ||||||||
<sup>mysqli</sup> | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ |
<sup>mysqlnd</sup> | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | |
<sup>OAuth</sup> | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ |
<sup>oci8</sup> | d | d | d | d | d | d | d | d | d | d | d | d | |
<sup>OPcache</sup> | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ |
<sup>openssl</sup> | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ |
<sup>pcntl</sup> | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ |
<sup>pcre</sup> | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ |
<sup>PDO</sup> | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ |
<sup>pdo_dblib</sup> | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ |
<sup>PDO_Firebird</sup> | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ |
<sup>pdo_mysql</sup> | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ |
<sup>PDO_OCI</sup> | d | d | d | d | d | d | d | d | |||||
<sup>pdo_pgsql</sup> | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ |
<sup>pdo_sqlite</sup> | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ |
<sup>pdo_sqlsrv</sup> | d | d | d | d | d | d | d | d | |||||
<sup>pgsql</sup> | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ |
<sup>phalcon</sup> | d | d | d | d | d | d | d | d | d | d | d | ||
<sup>Phar</sup> | ๐ธ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ |
<sup>posix</sup> | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ |
<sup>pspell</sup> | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ |
<sup>psr</sup> | d | d | d | d | d | d | d | d | d | d | d | ||
<sup>random</sup> | โ | ||||||||||||
<sup>rdkafka</sup> | d | d | d | d | d | d | d | d | d | d | d | d | |
<sup>readline</sup> | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ |
<sup>recode</sup> | โ | โ | โ | โ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ||||
<sup>redis</sup> | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ |
<sup>Reflection</sup> | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ |
<sup>session</sup> | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ |
<sup>shmop</sup> | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ |
<sup>SimpleXML</sup> | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ |
<sup>snmp</sup> | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ |
<sup>soap</sup> | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ |
<sup>sockets</sup> | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ |
<sup>sodium</sup> | โ | โ | โ | โ | โ | โ | |||||||
<sup>solr</sup> | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | |||||||
<sup>SPL</sup> | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ |
<sup>sqlite</sup> | โ | โ | |||||||||||
<sup>sqlite3</sup> | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | |
<sup>sqlsrv</sup> | d | d | d | d | d | d | d | d | |||||
<sup>ssh2</sup> | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ||||||||
<sup>swoole</sup> | d | d | d | d | d | d | d | d | d | d | d | ||
<sup>sysvmsg</sup> | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ |
<sup>sysvsem</sup> | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ |
<sup>sysvshm</sup> | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ |
<sup>tidy</sup> | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ |
<sup>tokenizer</sup> | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ |
<sup>uploadprogress</sup> | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ |
<sup>uuid</sup> | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | |
<sup>vips</sup> | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ||||||
<sup>wddx</sup> | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ||||
<sup>Xdebug</sup> | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ |
<sup>xhprof</sup> | d | d | d | d | d | d | d | d | |||||
<sup>xlswriter</sup> | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | |||||
<sup>xml</sup> | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ |
<sup>xmlreader</sup> | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ |
<sup>xmlrpc</sup> | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | |||
<sup>xmlwriter</sup> | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ |
<sup>xsl</sup> | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ |
<sup>yaml</sup> | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | |
<sup>zip</sup> | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ |
<sup>zlib</sup> | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ |
<sup>zstd</sup> | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ | ๐ธ |
<br/> PHP modules can be enabled or disabled on demand to reflect the state of your target environment.
- Core enabled (cannot be disabled): โ
- Enabled (can be disabled): ๐ธ
- Available, but disabled (can be enabled): d
<br/> </details> <details><summary><strong>๐ ๏ธ Available CLI Tools</strong></summary> <h3>Available Tools</h3>Documentation: Enable/disable PHP modules
Well-known and popular tools will be at your service:
<a target="_blank" title="CodeCeption" href="https://codeception.com/"><img width="64" style="width:64px" src="docs/img/logo_tools/codeception.png" alt="Devilbox" /></a> <a target="_blank" title="Composer" href="https://getcomposer.org"><img width="64" style="width:64px" src="docs/img/logo_tools/composer.png" alt="Devilbox" /></a> <a target="_blank" title="Drupal Console" href="https://drupalconsole.com"><img width="64" style="width:64px" src="docs/img/logo_tools/drupal-console.png" alt="Devilbox" /></a> <a target="_blank" title="ESLint" href="https://eslint.org/"><img width="64" style="width:64px;" src="docs/img/logo_tools/eslint.png" alt="Devilbox" /></a> <a target="_blank" title="Git" href="https://git-scm.com"><img width="64" style="width:64px;" src="docs/img/logo_tools/git.png" alt="Devilbox" /></a> <a target="_blank" title="Gulp" href="https://gulpjs.com/"><img width="64" style="width:64px;" src="docs/img/logo_tools/gulp.png" alt="Devilbox" /></a> <a target="_blank" title="Grunt" href="https://gruntjs.com/"><img width="64" style="width:64px;" src="docs/img/logo_tools/grunt.png" alt="Devilbox" /></a> <a target="_blank" title="mysqldump-secure" href="https://mysqldump-secure.org"><img width="64" style="width:64px;" src="docs/img/logo_tools/mysqldump-secure.png" alt="Devilbox" /></a> <a target="_blank" title="NodeJS" href="https://nodejs.org"><img width="64" style="width:64px;" src="docs/img/logo_tools/nodejs.png" alt="Devilbox" /></a> <a target="_blank" title="NPM" href="https://www.npmjs.com"><img width="64" style="width:64px;" src="docs/img/logo_tools/npm.png" alt="Devilbox" /></a> <a target="_blank" title="PHPUnit" href="https://phpunit.de/"><img width="64" style="width:64px;" src="docs/img/logo_tools/phpunit.png" alt="Devilbox" /></a> <a target="_blank" title="Sass" href="https://sass-lang.com/"><img width="64" style="width:64px;" src="docs/img/logo_tools/sass.png" alt="Devilbox" /></a> <a target="_blank" title="Webpack" href="https://webpack.js.org/"><img width="64" style="width:64px;" src="docs/img/logo_tools/webpack.png" alt="Devilbox" /></a> <a target="_blank" title="Yarn" href="https://yarnpkg.com/en/"><img width="64" style="width:64px;" src="docs/img/logo_tools/yarn.png" alt="Devilbox" /></a>
<!-- tools --> <!-- TOOLS_WORK_START -->Tool | PHP 5.2 | PHP 5.3 | PHP 5.4 | PHP 5.5 | PHP 5.6 | PHP 7.0 | PHP 7.1 | PHP 7.2 | PHP 7.3 | PHP 7.4 | PHP 8.0 | PHP 8.1 | PHP 8.2 |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
angular-cli | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ |
asgardcms | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | |||
awesome-ci | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ |
codeception | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | ||
composer | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ |
corepack | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ |
deployer | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | ||
eslint | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ |
git | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ |
git-flow | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ |
grunt-cli | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ |
gulp | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ |
jq | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ |
jsonlint | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ |
laravel-installer | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | ||
laravel-lumen | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | |||
linkcheck | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ |
mdl | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ |
mdlint | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ |
mupdf-tools | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ |
net-tools | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ |
node | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ |
npm | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ |
nvm | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ |
phalcon-devtools | โ | โ | โ | โ | โ | โ | โ | โ | โ | ||||
php-cs-fixer | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | ||
phpcbf | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ |
phpcs | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ |
phpmd | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | |
phpunit | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | |
pip | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ |
pm2 | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ |
pwncat | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ |
rsync | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ |
sass | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ |
shellcheck | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ |
ssh | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ |
stylelint | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ |
svn | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ |
symfony-cli | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ |
taskfile | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ |
tig | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ |
vim | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ |
vue-cli | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ |
webpack-cli | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ |
wkhtmltopdf | โ | โ | โ | โ | โ | โ | โ | โ | โ | ||||
wp-cli | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | |
wscat | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ |
yamllint | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ |
yarn | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ |
yq | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ |
zsh | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ | โ |
PHP Frameworks
As far as tested there are no limitations and you can use any Framework or CMS just as you would on your live environment. Below are a few examples of extensively tested Frameworks and CMS:
<a target="_blank" title="CakePHP" href="https://cakephp.org"><img width="64" style="width:64px" src="docs/img/logo_fw/cake.png" alt="Devilbox" /></a> <a target="_blank" title="CodeIgniter" href="https://www.codeigniter.com"><img width="64" style="width:64px" src="docs/img/logo_fw/codeigniter.png" alt="Devilbox" /></a> <a target="_blank" title="Contao" href="https://contao.org/en/"><img width="64" style="width:64px" src="docs/img/logo_fw/contao.png" alt="Devilbox" /></a> <a target="_blank" title="CraftCMS" href="https://craftcms.com/"><img width="64" style="width:64px" src="docs/img/logo_fw/craftcms.png" alt="Devilbox" /></a> <a target="_blank" title="Drupal" href="https://www.drupal.org"><img width="64" style="width:64px" src="docs/img/logo_fw/drupal.png" alt="Devilbox" /></a> <a target="_blank" title="Joomla" href="https://www.joomla.org"><img width="64" style="width:64px" src="docs/img/logo_fw/joomla.png" alt="Devilbox" /></a> <a target="_blank" title="Laravel" href="https://laravel.com"><img width="64" style="width:64px" src="docs/img/logo_fw/laravel.png" alt="Devilbox" /></a> <a target="_blank" title="Magento 2" href="https://magento.com"><img width="64" style="width:64px" src="docs/img/logo_fw/magento.png" alt="Devilbox" /></a> <a target="_blank" title="PhalconPHP" href="https://phalconphp.com"><img width="64" style="width:64px" src="docs/img/logo_fw/phalcon.png" alt="Devilbox" /></a> <a target="_blank" title="PhotonCMS" href="https://photoncms.com"><img width="64" style="width:64px" src="docs/img/logo_fw/photoncms.png" alt="Devilbox" /></a> <a target="_blank" title="PrestaShop" href="https://www.prestashop.com/en"><img width="64" style="width:64px" src="docs/img/logo_fw/prestashop.png" alt="Devilbox" /></a> <a target="_blank" title="ProcessWire" href="https://processwire.com/"><img width="64" style="width:64px" src="docs/img/logo_fw/processwire.png" alt="Devilbox" /></a> <a target="_blank" title="Shopware" href="https://en.shopware.com"><img width="64" style="width:64px" src="docs/img/logo_fw/shopware.png" alt="Devilbox" /></a> <a target="_blank" title="Symfony" href="https://symfony.com"><img width="64" style="width:64px" src="docs/img/logo_fw/symfony.png" alt="Devilbox" /></a> <a target="_blank" title="Typo3" href="https://typo3.org"><img width="64" style="width:64px" src="docs/img/logo_fw/typo3.png" alt="Devilbox" /></a> <a target="_blank" title="WordPress" href="https://wordpress.org"><img width="64" style="width:64px" src="docs/img/logo_fw/wordpress.png" alt="Devilbox" /></a> <a target="_blank" title="Yii" href="http://www.yiiframework.com"><img width="64" style="width:64px" src="docs/img/logo_fw/yii.png" alt="Devilbox" /></a> <a target="_blank" title="Zend" href="https://framework.zend.com"><img width="64" style="width:64px" src="docs/img/logo_fw/zend.png" alt="Devilbox" /></a>
Documentation:<br/> Setup CakePHP | Setup CodeIgniter | Setup Contao | Setup CraftCMS | Setup Drupal | Setup Joomla | Setup Laravel | Setup Magento 2 | Setup PhalconPHP | Setup PhotonCMS | Setup PrestaShop | Setup ProcessWire | Setup Shopware | Setup Symfony | Setup Typo3 | Setup WordPress | Setup Yii | Setup Zend
Reverse Proxy Applications
As far as tested there are no limitations and you can use any application that creates an open port.
These ports will be reverse proxied by the web server and even allow you to use valid HTTPS for them.
By the built-in autostart feature of the Devilbox you can ensure that your application automatically
starts up as soon as you run docker-compose up
.
<a target="_blank" title="NodeJS" href="https://nodejs.org"><img width="64" style="width:64px;" src="docs/img/logo_tools/nodejs.png" alt="NodeJS" /></a> <a target="_blank" title="Python Flask" href="https://github.com/pallets/flask"><img width="64" style="width:64px;" src="docs/img/logo_tools/flask.png" alt="Python Flask" /></a> <a target="_blank" title="Sphinx" href="https://www.sphinx-doc.org/en/stable/"><img width="64" style="width:64px;" src="docs/img/logo_tools/sphinx.png" alt="Sphinx" /></a>
<br/> </details> <details><summary><strong>๐ Devilbox Intranet</strong></summary> <h3>Devilbox Intranet</h3>Documentation:<br/> Setup reverse proxy NodeJs | Setup reverse proxy Sphinx documentation
The Devilbox comes with a pre-configured intranet on http://localhost
and https://localhost
. This can be explicitly disabled or password-protected. The intranet will not only show you, the chosen configuration, but also validate the status of the current configuration, such as if DNS records exists (on host and container), are directories properly set-up. Additionally it provides external tools to let you interact with databases and emails.
- Virtual Host overview (validates directories and DNS)
- Command & Control
- Email overview
- Database overview (MySQL, PgSQL, Redis, Memcache, ...)
- Info pages (Httpd, MySQL, PgSQL, Redis, Memcache, ...)
- And many more...
The following batteries are available in the Devilbox intranet by default:
<table width="100%" style="width:100%; display:table;"> <tbody style="text-align:center;"> <tr> <td><a href="https://www.adminer.org"><img width="64" style="width:64px;" src="https://raw.githubusercontent.com/cytopia/icons/master/128x128/adminer.png" alt="Adminer" /></a></td> <td><a href="https://www.phpmyadmin.net"><img width="64" style="width:64px;" src="https://raw.githubusercontent.com/cytopia/icons/master/128x128/phpmyadmin.png" alt="phpMyAdmin" /></a></td> <td><a href="http://phppgadmin.sourceforge.net"><img width="64" style="width:64px;" src="https://raw.githubusercontent.com/cytopia/icons/master/128x128/phppgadmin.png" alt="phpPgAdmin" /></a></td> <td><a href="https://github.com/sasanrose/phpredmin"><img width="64" style="width:64px;" src="https://raw.githubusercontent.com/cytopia/icons/master/128x128/phpredmin.png" alt="phpRedMin" /></a></td> <td><a href="https://github.com/elijaa/phpmemcachedadmin"><img width="64" style="width:64px;" src="https://raw.githubusercontent.com/cytopia/icons/master/128x128/phpmemcachedadmin.png" alt="PHPMemcachedAdmin" /></a></td> <td><a href="https://github.com/PeeHaa/OpCacheGUI"><img width="64" style="width:64px;" src="https://raw.githubusercontent.com/cytopia/icons/master/128x128/opcachegui.png" alt="OpCacheGUI" /></a></td> <td><img width="64" style="width:64px;" src="https://raw.githubusercontent.com/cytopia/icons/master/128x128/email.png" alt="Mail viewer" /></td> </tr> <tr> <td><a href="https://www.adminer.org">Adminer</a></td> <td><a href="https://www.phpmyadmin.net">phpMyAdmin</a></td> <td><a href="http://phppgadmin.sourceforge.net">phpPgAdmin</a></td> <td><a href="https://github.com/sasanrose/phpredmin">phpRedMin</a></td> <td><a href="https://github.com/elijaa/phpmemcachedadmin">PHP Memcached Admin</a></td> <td><a href="https://github.com/PeeHaa/OpCacheGUI">OpCache GUI</a></td> <td>Mail viewer</td> </tr> </tbody> </table> <br/><br/> </details> <details><summary><strong>๐ธ Screenshots</strong></summary> <h3>Screenshots</h3>Documentation: Devilbox Intranet
A few examples of how the built-in intranet looks like.
<table> <tbody> <tr> <td rowspan="2"> <a href="docs/img/screenshots/01_intranet_home.png"><img style="width:250px;" alt="Intranet: Home" width="250" src="docs/img/screenshots/01_intranet_home.png" /></a> </td> <td> <a href="docs/img/screenshots/02_intranet_vhosts.png"><img style="width:250px" alt="Intranet: Vhost" width="250" src="docs/img/screenshots/02_intranet_vhosts.png" /></a> </td> <td> <a href="docs/img/screenshots/03_intranet_databases.png"><img style="width:250px;" alt="Intranet: Database" width="250" src="docs/img/screenshots/03_intranet_databases.png" /></a> </td> </tr> <tr> <td> <a href="docs/img/screenshots/04_intranet_emails.png"><img style="width:250px;" alt="Intranet: Emails" width="250" src="docs/img/screenshots/04_intranet_emails.png" /></a> </td> <td></td> </tr> </tbody> </table> <br/> </details>๐ซ Community
The Devilbox has a lot of features reaching from a simple single-user development environment that works out of the box up to a shared development infrastructure for a corporate network.
In order to be aware about all that features, ensure to have skimmed over the documentation, so you know what can be done and how that might simplify your every-day life. If you ever run into any unforseen issues, feel free to join the Discord chat or visit the forums and get community support quickly.
<table width="100%" style="width:100%; display:table;"> <thead> <tr> <th width="25%" style="width:25%;"><h3><a target="_blank" href="https://devilbox.readthedocs.io">๐ Docs</a></h3></th> <th width="25%" style="width:25%;"><h3><a target="_blank" href="https://discord.gg/2wP3V6kBj4">๐ฎ Discord</a></h3></th> <th width="25%" style="width:25%;"><h3><a target="_blank" href="https://devilbox.discourse.group">๐ช Forum</a></h3></th> <th width="25%" style="width:25%;"><h3><a target="_blank" href="https://github.com/devilbox/flames">๐ฅ Flames</a></h3></th> </tr> </thead> <tbody style="vertical-align: middle; text-align: center;"> <tr> <td> <a target="_blank" href="https://devilbox.readthedocs.io"> <img title="Documentation" src="https://raw.githubusercontent.com/cytopia/icons/master/400x400/readthedocs.png" /> </a> </td> <td> <a target="_blank" href="https://discord.gg/2wP3V6kBj4"> <img title="Chat on Discord" src="https://raw.githubusercontent.com/cytopia/icons/master/400x400/discord.png" /> </a> </td> <td> <a target="_blank" href="https://devilbox.discourse.group"> <img title="Devilbox Forums" src="https://raw.githubusercontent.com/cytopia/icons/master/400x400/discourse.png" /> </a> </td> <td> <a target="_blank" href="https://github.com/devilbox/flames"> <img title="Devilbox Flames" src="https://raw.githubusercontent.com/cytopia/icons/master/400x400/flames2.png" /> </a> </td> </tr> <tr> <td><a target="_blank" href="https://devilbox.readthedocs.io">devilbox.readthedocs.io</a></td> <td><a target="_blank" href="https://discord.gg/2wP3V6kBj4">discord/devilbox</a></td> <td><a target="_blank" href="https://devilbox.discourse.group">devilbox.discourse.group</a></td> <td><a target="_blank" href="https://github.com/devilbox/flames">github.com/devilbox/flames</a></td> </tr> </tbody> </table>๐ค Contributing
The Devilbox is still a young project with a long roadmap ahead. Features are decided by you - the community, so any kind of contribution is welcome.
- Star this project
- Open up issues for bugs and feature requests
- Clone this project and submit fixes or features
๐ง Maintainer
I try to keep up with literally over 100 projects. If my work is making your life easier, consider sending coffee or beer. ๐ค
Contributions: PyPI: cytopia ยท Terraform: cytopia ยท Ansible: cytopia
๐ Logos
Logos and banners can be found at devilbox/artwork. Feel free to use or modify them by the terms of their license.
<img style="width:64px; height:64px;" width="64" height="64" src="https://github.com/devilbox/artwork/blob/master/submissions_logo/cytopia/01/png/logo_128_trans.png?raw=true" /> <img style="width:64px; height:64px;" width="64" height="64" src="https://github.com/devilbox/artwork/blob/master/submissions_logo/cytopia/02/png/logo_128_trans.png?raw=true" /> <img style="height:64px;" height="64" src="https://github.com/devilbox/artwork/blob/master/submissions_banner/cytopia/01/png/banner_128_trans.png?raw=true" />
๐ License
Copyright (c) 2016 cytopia
<a href="https://github.com/cytopia/devilbox/graphs/contributors"> <img src="https://contrib.rocks/image?repo=cytopia/devilbox" /> </a>