diff --git a/source/installation/index.rst b/source/installation/index.rst index 9bc469aa2..fb2a13826 100644 --- a/source/installation/index.rst +++ b/source/installation/index.rst @@ -84,7 +84,7 @@ Chill will be available at ``http://localhost:8001.`` Currently, there isn't any .. code-block:: bash - docker-compose exec --user $(id -u) php app/console doctrine:fixtures:load + docker-compose exec --user $(id -u) php bin/console doctrine:fixtures:load There are several users available: @@ -113,9 +113,9 @@ How to execute the console ? .. code-block:: bash # if a container is running - docker-compose exec --user $(id -u) php app/console + docker-compose exec --user $(id -u) php bin/console # if not - docker-compose run --user $(id -u) php app/console + docker-compose run --user $(id -u) php bin/console How to create the database schema (= run migrations) ? ====================================================== @@ -123,9 +123,9 @@ How to create the database schema (= run migrations) ? .. code-block:: bash # if a container is running - docker-compose exec --user $(id -u) php app/console doctrine:migrations:migrate + docker-compose exec --user $(id -u) php bin/console doctrine:migrations:migrate # if not - docker-compose run --user $(id -u) php app/console doctrine:migrations:migrate + docker-compose run --user $(id -u) php bin/console doctrine:migrations:migrate How to read the email sent by the program ? @@ -141,9 +141,9 @@ How to load fixtures ? (development mode only) .. code-block:: bash # if a container is running - docker-compose exec --user $(id -u) php app/console doctrine:fixtures:load + docker-compose exec --user $(id -u) php bin/console doctrine:fixtures:load # if not - docker-compose run --user $(id -u) php app/console doctrine:fixtures:load + docker-compose run --user $(id -u) php bin/console doctrine:fixtures:load How to open a terminal in the project =====================================