From eaec039727ef5d8076e605141a65e3990418f314 Mon Sep 17 00:00:00 2001 From: Nick Yeoman Date: Tue, 22 Nov 2022 22:14:27 -0800 Subject: [PATCH] documentation --- docs/Bundles.md | 4 ++++ docs/Console.md | 1 + docs/Docker.md | 7 +++++++ 3 files changed, 12 insertions(+) create mode 100644 docs/Bundles.md diff --git a/docs/Bundles.md b/docs/Bundles.md new file mode 100644 index 0000000..9df92e8 --- /dev/null +++ b/docs/Bundles.md @@ -0,0 +1,4 @@ +# Bundles + +## How to Create a bundle + diff --git a/docs/Console.md b/docs/Console.md index 4e761f3..afe29ac 100644 --- a/docs/Console.md +++ b/docs/Console.md @@ -14,5 +14,6 @@ php bin/console security:hash-password # Composer Cheat Sheet +composer dump-autoload ## Installed Recipes Use ```composer recipes``` to see which bundles you have installed. diff --git a/docs/Docker.md b/docs/Docker.md index 1f47851..82aad32 100644 --- a/docs/Docker.md +++ b/docs/Docker.md @@ -6,4 +6,11 @@ You should be able to manually parse the docker compose file. How to run with docker: ```bash sudo docker-compose run php bin/console doctrine:migrations:migrate +``` +where php is the name of the container in the docker-compose file. + +## Build php container + +``` +docker build -t vendor/php:latest . ``` \ No newline at end of file