devilbox/docs/getting-started/start-the-devilbox.rst

190 lines
5.8 KiB
ReStructuredText
Raw Normal View History

2018-07-10 18:59:52 +00:00
.. include:: /_includes/all.rst
.. include:: /_includes/snippets/__ANNOUNCEMENTS__.rst
2018-07-10 18:59:52 +00:00
2018-03-11 16:39:29 +00:00
.. _start_the_devilbox:
2018-03-10 21:29:15 +00:00
******************
Start the Devilbox
******************
2018-03-11 11:33:54 +00:00
2018-07-06 07:30:52 +00:00
Congratulations, when you have reached this page everything has been set up and you can now get
your hands dirty.
2018-03-11 11:33:54 +00:00
.. note::
2018-07-03 13:47:58 +00:00
Starting and stopping containers is done via ``docker-compose``. If you have never worked with
2018-07-10 18:59:52 +00:00
it before, have a look at their documentation for
|ext_lnk_docker_compose_cmd_overview|, |ext_lnk_docker_compose_cmd_up|,
|ext_lnk_docker_compose_cmd_stop|, |ext_lnk_docker_compose_cmd_kill|,
|ext_lnk_docker_compose_cmd_rm|, |ext_lnk_docker_compose_cmd_logs| and
|ext_lnk_docker_compose_cmd_pull| commands.
2018-03-11 11:33:54 +00:00
2018-03-16 08:25:51 +00:00
**Table of Contents**
.. contents:: :local:
2018-07-06 07:30:52 +00:00
The Devilbox startup explained
==============================
To gain a brief understanding about what is happening under the hood during startup,
read ahead or skip directly to: :ref:`start_the_devilbox_start_all_container`.
Startup operations with the same configuration are idempotent, thus consecutive startups will not
introduce any new changes. The following shows the brief startup steps:
* Docker Compose will automatically pull all necessary Docker images if they do not
exist locally.
* Once the HTTPD container start, it will automatically create a Certificate Authority to be used
for https connections and will place it in the ``ca/`` directory.
* The HTTPD container will then look for already available projects and create virtual hosts
configurations, apply vhost-gen templates as well as CA-signed HTTPS certificates.
* Once the Bind container start, it will create a wildcard DNS zone for the given
:ref:`env_tld_suffix`
* In case MySQL or PgSQL container start, they will populate itself with their required default
databases.
.. note::
Docker images are only pulled if they do not exist. They are not updated automatically.
If you want to update to new Docker images read on: :ref:`update_the_devilbox`.
.. _start_the_devilbox_start_all_container:
2018-03-11 11:33:54 +00:00
Start all container
===================
2018-07-06 07:30:52 +00:00
If you want all provided docker container to be available (as defined in ``docker-compose.yml``),
start them all by not explicitly specifying any image name.
Foreground
----------
For the first startup, foreground start is recommended to see any errors that might occur:
2018-03-11 11:33:54 +00:00
.. code-block:: bash
2018-03-11 13:57:10 +00:00
host> docker-compose up
2018-03-11 11:33:54 +00:00
* If you want to gracefully stop all container, hit ``Ctrl + c``
* If you want to kill all container, hit ``Ctrl + c`` twice
* Ensure to run ``docker-compose rm -f`` afterwards
2018-03-11 11:33:54 +00:00
2018-07-06 07:30:52 +00:00
Background
----------
For consecutive startups you can send them into background (``-d``):
.. code-block:: bash
host> docker-compose up -d
* If you want to gracefully stop all container, enter ``docker-compose stop``
2020-09-17 11:47:21 +00:00
* If you want to kill all container, enter ``docker-compose kill``
* Ensure to run ``docker-compose rm -f`` afterwards
2018-07-06 07:30:52 +00:00
2018-03-11 11:33:54 +00:00
Start some container
====================
2018-07-06 07:30:52 +00:00
If you don't require all container to be up and running and let's say just ``PHP``, ``HTTPD`` and
``MYSQL``, you must explicitly specify the image names to start:
Foreground
----------
2018-03-11 11:33:54 +00:00
.. code-block:: bash
2018-03-11 13:57:10 +00:00
host> docker-compose up httpd php mysql
2018-03-11 11:33:54 +00:00
* If you want to gracefully stop all started container, hit ``Ctrl + c``
* If you want to kill all started container, hit ``Ctrl + c`` twice
* Ensure to run ``docker-compose rm -f`` afterwards
2018-03-11 11:33:54 +00:00
2018-07-06 07:30:52 +00:00
Background
----------
.. code-block:: bash
host> docker-compose up -d httpd php mysql
* If you want to gracefully stop all container, enter ``docker-compose stop``
* If you want to kill all container, enter ``docker-compose kil``
* Ensure to run ``docker-compose rm -f`` afterwards
2018-07-06 07:30:52 +00:00
2018-03-11 11:33:54 +00:00
.. seealso::
:ref:`available_container`
Have a look at this page to get an overview about all available container and by what name
they have to be specified.
.. _start_the_devilbox_stop_and_restart:
Stop and Restart
================
.. important::
When stopping or restarting the Devilbox, ensure to also **remove stopped container** before the
next startup to prevent orphaned runtime settings and always start fresh.
This will prevent many common Docker issues.
.. seealso:: **Troubleshooting:** :ref:`troubleshooting_what_to_do_first`
Stop all container
------------------
.. code-block:: bash
# Stop all container
host> docker-compose stop
# Remove stopped container (important!)
host> docker-compose rm -f
Restart all container
---------------------
.. code-block:: bash
# Stop all container
host> docker-compose stop
# Remove stopped container (important!)
host> docker-compose rm -f
# Start all container
host> docker-compose up
2018-03-11 11:33:54 +00:00
Open Devilbox intranet
======================
Once ``docker-compose up`` has finished and all or the selected container are up and running,
you can visit the Devilbox intranet with your favorite Web browser at http://localhost or
2019-04-27 09:55:57 +00:00
http://127.0.0.1 (https://localhost or https://127.0.0.1 respectively).
2018-03-11 11:33:54 +00:00
The Intranet start page will also show you all running and failed containers:
2018-07-08 10:42:04 +00:00
.. include:: /_includes/figures/devilbox/devilbox-intranet-dash-all.rst
.. include:: /_includes/figures/devilbox/devilbox-intranet-dash-selective.rst
2018-07-03 13:47:58 +00:00
.. important::
:ref:`howto_find_docker_toolbox_ip_address`
When you are using ``Docker Toolbox`` the Devilbox web server port will not be available on
your host computer. You first have to find out on which IP address the Docker Toolbox machine
is serving and use this one instead.
2018-03-11 11:33:54 +00:00
Checklist
=========
1. Docker container are started successfully with ``docker-compose up``
2. ``docker-compose rm -f`` is issued before restarting the Devilbox
3. Intranet is reachable via ``http://localhost``, ``http://127.0.0.1`` or Docker Toolbox IP address
4. Intranet is reachable via ``https://localhost``, ``https://127.0.0.1`` (HTTPS)
2018-07-06 07:30:52 +00:00
.. seealso:: :ref:`troubleshooting`