mirror of
https://github.com/cytopia/devilbox.git
synced 2025-03-24 21:15:40 +00:00
Change container versions
This commit is contained in:
parent
08bc17d186
commit
6f79f007de
@ -330,6 +330,8 @@ combination of all container versions.
|
||||
Any change for those settings requires a restart of the devilbox.
|
||||
|
||||
|
||||
.. _env_php_server:
|
||||
|
||||
PHP_SERVER
|
||||
----------
|
||||
|
||||
@ -360,6 +362,8 @@ All values are already available in the ``.env`` file and just need to be commen
|
||||
#PHP_SERVER=hhvm-latest
|
||||
|
||||
|
||||
.. _env_httpd_server:
|
||||
|
||||
HTTPD_SERVER
|
||||
------------
|
||||
|
||||
@ -386,6 +390,8 @@ All values are already available in the ``.env`` file and just need to be commen
|
||||
#HTTPD_SERVER=nginx-mainline
|
||||
|
||||
|
||||
.. _env_mysql_server:
|
||||
|
||||
MYSQL_SERVER
|
||||
------------
|
||||
|
||||
@ -420,6 +426,8 @@ All values are already available in the ``.env`` file and just need to be commen
|
||||
#MYSQL_SERVER=percona-5.7
|
||||
|
||||
|
||||
.. _env_pgsql_server:
|
||||
|
||||
PGSQL_SERVER
|
||||
------------
|
||||
|
||||
@ -454,6 +462,8 @@ All values are already available in the ``.env`` file and just need to be commen
|
||||
https://hub.docker.com/_/postgres/
|
||||
|
||||
|
||||
.. _env_redis_server:
|
||||
|
||||
REDIS_SERVER
|
||||
------------
|
||||
|
||||
@ -485,6 +495,8 @@ All values are already available in the ``.env`` file and just need to be commen
|
||||
https://hub.docker.com/_/redis/
|
||||
|
||||
|
||||
.. _env_memcd_server:
|
||||
|
||||
MEMCD_SERVER
|
||||
------------
|
||||
|
||||
@ -535,6 +547,8 @@ All values are already available in the ``.env`` file and just need to be commen
|
||||
https://hub.docker.com/_/memcached/
|
||||
|
||||
|
||||
.. _env_mongo_server:
|
||||
|
||||
MONGO_SERVER
|
||||
------------
|
||||
|
||||
|
131
docs/tutorials/change-container-versions.rst
Normal file
131
docs/tutorials/change-container-versions.rst
Normal file
@ -0,0 +1,131 @@
|
||||
*************************
|
||||
Change container versions
|
||||
*************************
|
||||
|
||||
One of the core concepts of the Devilbox is to easily change between different versions of a
|
||||
specific service.
|
||||
|
||||
|
||||
**Table of Contents**
|
||||
|
||||
.. contents:: :local:
|
||||
|
||||
|
||||
Change PHP version
|
||||
==================
|
||||
|
||||
Stop the Devilbox
|
||||
-----------------
|
||||
|
||||
Shut down the Devilbox in case it is still running:
|
||||
|
||||
.. code-block:: bash
|
||||
|
||||
# Navigate to the Devilbox directory
|
||||
host> /home/user/devilbox
|
||||
|
||||
# Stop all container
|
||||
host> docker-compose stop
|
||||
|
||||
|
||||
Edit the ``.env`` file
|
||||
----------------------
|
||||
|
||||
Open the ``.env`` file with your favourite editor and navigate to the ``PHP_SERVER`` section.
|
||||
It will look something like this:
|
||||
|
||||
|
||||
.. code-block:: bash
|
||||
:name: .env
|
||||
:caption: .env
|
||||
:emphasize-lines: 5
|
||||
|
||||
#PHP_SERVER=5.4
|
||||
#PHP_SERVER=5.5
|
||||
#PHP_SERVER=5.6
|
||||
#PHP_SERVER=7.0
|
||||
PHP_SERVER=7.1
|
||||
#PHP_SERVER=7.1
|
||||
|
||||
As you can see, all available values are already there, but commented. Only one is uncommented.
|
||||
In this example it is ``7.1``, which is the PHP version that will be started, once the Devilbox
|
||||
starts.
|
||||
|
||||
To change this, simply uncomment your version of choice and save this file. Do not forget to comment
|
||||
(disable) any other version.
|
||||
|
||||
In order to enable PHP 5.5, you would change the ``.env`` file like this:
|
||||
|
||||
.. code-block:: bash
|
||||
:name: .env
|
||||
:caption: .env
|
||||
:emphasize-lines: 2
|
||||
|
||||
#PHP_SERVER=5.4
|
||||
PHP_SERVER=5.5
|
||||
#PHP_SERVER=5.6
|
||||
#PHP_SERVER=7.0
|
||||
#PHP_SERVER=7.1
|
||||
#PHP_SERVER=7.1
|
||||
|
||||
|
||||
Start the Devilbox
|
||||
----------------------
|
||||
|
||||
Now save the file and you can start the Devilbox again.
|
||||
|
||||
.. code-block:: bash
|
||||
|
||||
# Navigate to the Devilbox directory
|
||||
host> /home/user/devilbox
|
||||
|
||||
# Stop all container
|
||||
host> docker-compose up php httpd bind
|
||||
|
||||
.. seealso:: :ref:`start_the_devilbox`
|
||||
|
||||
|
||||
Gotchas
|
||||
-------
|
||||
|
||||
If two versions are uncommented, always the last one takes precedence.
|
||||
|
||||
Consider this ``.env`` file:
|
||||
|
||||
.. code-block:: bash
|
||||
:name: .env
|
||||
:caption: .env
|
||||
:emphasize-lines: 2,4
|
||||
|
||||
#PHP_SERVER=5.4
|
||||
PHP_SERVER=5.5
|
||||
#PHP_SERVER=5.6
|
||||
PHP_SERVER=7.0
|
||||
#PHP_SERVER=7.1
|
||||
#PHP_SERVER=7.1
|
||||
|
||||
Both, PHP 5.4 and PHP 7.0 are uncommented, however, when you start the Devilbox, it will use
|
||||
PHP 7.0 as this value overwrites any previous ones.
|
||||
|
||||
|
||||
Change whatever version
|
||||
=======================
|
||||
|
||||
When you have read how to change the PHP version, it should be fairly simple to change any
|
||||
service version. It behaves in the exact same way.
|
||||
|
||||
The variable names of all available services with changable versions are in the following format:
|
||||
``<SERVICE>_SERVER``. Just look through the :ref:`env_file`.
|
||||
|
||||
.. seealso::
|
||||
The following variables control service versions:
|
||||
:ref:`env_php_server`, :ref:`env_httpd_server`, :ref:`env_mysql_server`, :ref:`env_pgsql_server`, :ref:`env_redis_server`, :ref:`env_memcd_server`, :ref:`env_mongo_server`
|
||||
|
||||
|
||||
|
||||
Checklist
|
||||
=========
|
||||
|
||||
1. Stop the Devilbox
|
||||
2. Uncomment version of choice in ``.env``
|
||||
3. Start the Devilbox
|
Loading…
x
Reference in New Issue
Block a user