Home

Awesome

<p align="center"> <h1 align="center">The Devilbox</h1> </p>

Devilbox

Quickstart | Examples | Features | The Devilbox Stack | Community | Contributing | Logos | License

Devilbox Release Discord Discourse 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/>

Linux OSX Windows Plus Docker <br/>

</details>

Be up and running in 2 minutes.

<details style="margin-bottom:0px;"><summary>๐Ÿš€ Install and Run: Linux</summary> <h3>Linux: Install</h3>
  1. Download the Devilbox
    git clone https://github.com/cytopia/devilbox
    
  2. Enter the Devilbox git directory
    cd devilbox
    
  3. Copy the default environment file
    cp env-example .env
    
<h3>Linux: Run</h3>

<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.

<br/>
  1. Start httpd, php and mysql 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
    
  2. Visit http://localhost in your browser
<br/> </details> <details style="margin-bottom:0px;"><summary>๐Ÿš€ Install and Run: MacOS</summary> <h3>MacOS: Install</h3>
  1. Download the Devilbox
    git clone https://github.com/cytopia/devilbox
    
  2. Enter the Devilbox git directory
    cd devilbox
    
  3. Copy the default environment file
    cp env-example .env
    
<h3>MacOS: Run</h3>

<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.

<br/>
  1. Start httpd, php and mysql 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
    
  2. Visit http://localhost in your browser
<br/> </details> <details style="margin-bottom:0px;"><summary>๐Ÿš€ Install and Run: Windows</summary> <br/> <strong>Note: </strong> If you are using <code>WSL2</code>, refer to the Linux guide instead. <br/> <h3>Windows: Install</h3>
  1. 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>
  2. Copy <code>C:\devilbox\env-example</code> to <code>C:\devilbox.env</code>
<h3>Windows: Run</h3>

<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/>

  1. Start httpd, php and mysql 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
    
  2. Visit http://localhost in your browser
<br/> </details> <details><summary>๐Ÿ’ป Enter the work container</summary> <h3>Enter the work container</h3>

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:

  1. Use your prefered IDE (e.g. PhpStorm) on your host system to add and alter files
  2. 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

  1. On Linux, MacOS and Windows with WSL2
    # Inside the Devilbox git directory
    ./shell.sh
    
  2. On Windows without WSL2
    # Inside the Devilbox git directory
    ./shell.bat
    
</details>

๐Ÿ’ก Examples

Create your first project:

<details><summary>Example: Dummy Project</summary>
  1. Start the container you need:
    docker-compose up httpd php mysql
    
  2. Enter the work container:
    ./shell.sh
    
  3. Navigate to /shared/httpd:
    cd /shared/httpd
    
  4. Create your project directory
    mkdir dummy-project
    
  5. 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" />
  6. Create htdocs/ directory
    # Navigate to your project directory
    cd /shared/httpd/dummy-project
    
    # Create htdocs dir
    mkdir htdocs
    
  7. 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" />
  8. 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
    
  9. View your project in the browser: http://dummy-project.dvl.to
<br/> </details> <details><summary>Example: PHP Framework</summary>

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:

  1. Selective startup
  2. On Demand (add/remove container while running)
  3. 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:

Devilbox

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:

Devilbox

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>

Documentation: Install the Devilbox | Start the Devilbox | .env file

<br/> </details> <details style="margin-bottom: 0px;"><summary><strong>๐Ÿ‹ Available Container</strong></summary> <h3>Available Container</h3>

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.

AccelWebAppSQLNoSQLQueue / SearchELKUtils
HAProxyApachePHPMariaDBMemcachedRabbitMQElasticSearchBind
VarnishNginxPython (Flask)MySQLMongoDBSolrLogstashBlackfire
PerconaDBRedisKibanaMailHog
PostgreSQLNgrok
<br/>

Documentation: Available Container

<br/> </details> <details style="margin-bottom: 0px;"><summary><strong>๐Ÿ“Œ Version Matrix</strong></summary> <h3>Version Matrix</h3>

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/>

Documentation: Enable custom container

<br/> </details> <details><summary><strong>โš™๏ธ Available PHP Extensions</strong></summary> <h3>Available PHP Extensions</h3>

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 -->
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>ddddddd
<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>ddddddd
<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>dddddddddddd
<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>dddddddd
<sup>pdo_pgsql</sup>๐Ÿ—ธ๐Ÿ—ธ๐Ÿ—ธ๐Ÿ—ธ๐Ÿ—ธ๐Ÿ—ธ๐Ÿ—ธ๐Ÿ—ธ๐Ÿ—ธ๐Ÿ—ธ๐Ÿ—ธ๐Ÿ—ธ๐Ÿ—ธ
<sup>pdo_sqlite</sup>โœ”โœ”โœ”โœ”โœ”โœ”โœ”โœ”โœ”โœ”โœ”โœ”โœ”
<sup>pdo_sqlsrv</sup>dddddddd
<sup>pgsql</sup>๐Ÿ—ธ๐Ÿ—ธ๐Ÿ—ธ๐Ÿ—ธ๐Ÿ—ธ๐Ÿ—ธ๐Ÿ—ธ๐Ÿ—ธ๐Ÿ—ธ๐Ÿ—ธ๐Ÿ—ธ๐Ÿ—ธ๐Ÿ—ธ
<sup>phalcon</sup>ddddddddddd
<sup>Phar</sup>๐Ÿ—ธโœ”โœ”โœ”โœ”โœ”โœ”โœ”โœ”โœ”โœ”โœ”โœ”
<sup>posix</sup>โœ”โœ”โœ”โœ”โœ”โœ”โœ”โœ”โœ”โœ”โœ”โœ”โœ”
<sup>pspell</sup>๐Ÿ—ธ๐Ÿ—ธ๐Ÿ—ธ๐Ÿ—ธ๐Ÿ—ธ๐Ÿ—ธ๐Ÿ—ธ๐Ÿ—ธ๐Ÿ—ธ๐Ÿ—ธ๐Ÿ—ธ๐Ÿ—ธ๐Ÿ—ธ
<sup>psr</sup>ddddddddddd
<sup>random</sup>โœ”
<sup>rdkafka</sup>dddddddddddd
<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>dddddddd
<sup>ssh2</sup>๐Ÿ—ธ๐Ÿ—ธ๐Ÿ—ธ๐Ÿ—ธ๐Ÿ—ธ
<sup>swoole</sup>ddddddddddd
<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>dddddddd
<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>๐Ÿ—ธ๐Ÿ—ธ๐Ÿ—ธ๐Ÿ—ธ๐Ÿ—ธ๐Ÿ—ธ๐Ÿ—ธ๐Ÿ—ธ
<!-- /modules --> <br/>
<br/> PHP modules can be enabled or disabled on demand to reflect the state of your target environment.

Documentation: Enable/disable PHP modules

<br/> </details> <details><summary><strong>๐Ÿ› ๏ธ Available CLI Tools</strong></summary> <h3>Available Tools</h3>

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 -->
ToolPHP 5.2PHP 5.3PHP 5.4PHP 5.5PHP 5.6PHP 7.0PHP 7.1PHP 7.2PHP 7.3PHP 7.4PHP 8.0PHP 8.1PHP 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โœ“โœ“โœ“โœ“โœ“โœ“โœ“โœ“โœ“โœ“โœ“โœ“โœ“
<!-- TOOLS_WORK_END --> <!-- /tools --> <br/> </details> <details><summary><strong>๐Ÿ”Œ Supported Frameworks</strong></summary> <h3>Supported Frameworks</h3>

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>

Documentation:<br/> Setup reverse proxy NodeJs | Setup reverse proxy Sphinx documentation

<br/> </details> <details><summary><strong>๐ŸŒ Devilbox Intranet</strong></summary> <h3>Devilbox Intranet</h3>

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.

<br/>

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/>

Documentation: Devilbox Intranet

<br/> </details> <details><summary><strong>๐Ÿ“ธ Screenshots</strong></summary> <h3>Screenshots</h3>

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.

๐Ÿง˜ 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

MIT License

Copyright (c) 2016 cytopia

<a href="https://github.com/cytopia/devilbox/graphs/contributors"> <img src="https://contrib.rocks/image?repo=cytopia/devilbox" /> </a>