diff --git a/.gitignore b/.gitignore index d9b4bff514..46c3e8af31 100644 --- a/.gitignore +++ b/.gitignore @@ -19,3 +19,4 @@ docs/_build *~ yarn-debug.log* yarn-error.log* +site diff --git a/docs/using_lagoon/drupal/services/mariadb.md b/docs/using_lagoon/drupal/services/mariadb.md index 654126156d..84e68ff1e4 100644 --- a/docs/using_lagoon/drupal/services/mariadb.md +++ b/docs/using_lagoon/drupal/services/mariadb.md @@ -51,7 +51,7 @@ To get the published port via `docker`: Run: ```docker port[container_name]``` - $ docker port drupal_example_mariadb_1 + $ docker port drupal_example_mariadb_1 3306/tcp -> 0.0.0.0:32797 Or via `docker-compose` inside a Drupal repository @@ -73,10 +73,9 @@ To set a static port; edit your service definition in your `docker-compose.yml` ports: - "33772:3306" # exposes port 3306 with a 33772 on the host port. Note by doing this you are responsible for managing port collisions` ``` -**Note** - -By setting a static port you become responsible for maniging port collisions. +!!! note + By setting a static port you become responsible for maniging port collisions. #### Connect to MySQL