From 7545a999f46edf7e4581313361cccb1ef26e18f4 Mon Sep 17 00:00:00 2001 From: Yngve Svendsen Date: Sat, 21 Mar 2015 08:24:48 -0400 Subject: [PATCH] Regenerate --- mysql/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mysql/README.md b/mysql/README.md index 7579036d3..8d3249c4f 100644 --- a/mysql/README.md +++ b/mysql/README.md @@ -46,10 +46,10 @@ The `docker exec` command allows you to run commands inside a Docker container. docker exec -it some-mysql bash -The MySQL Server log is located at `/var/log/mysql/error.log` inside the container, and the following command line from a shell inside the container will let you inspect it: +The MySQL Server log is available through Docker's container log: + + docker logs some-mysql - more /var/log/mysql/error.log - ## Using a custom MySQL configuration file The MySQL startup configuration is specified in the file `/etc/mysql/my.cnf`. If you want to customize this configuration for your own purposes, you can create your alternative configuration file in a directory on the host machine and then mount this file in the appropriate location inside the `mysql` container, effectively replacing the standard configuration file.