From 944e6d2863f62afb9cbcae71a95c3585e0bce262 Mon Sep 17 00:00:00 2001 From: James Ots Date: Tue, 22 Sep 2015 21:41:59 +0100 Subject: [PATCH] Remove docker info from README.md --- README.md | 22 ---------------------- 1 file changed, 22 deletions(-) diff --git a/README.md b/README.md index 3a7d437..30f9f4a 100644 --- a/README.md +++ b/README.md @@ -95,28 +95,6 @@ Development To run the examples and tests, you'll need to create a 'connection.options' file by copying 'connection.options.example' and modifying the settings. -You can use Docker to create a temporary mysql instance for testing: - -``` -docker run --name mysql_test -d -P \ - -e MYSQL_ROOT_PASSWORD=root \ - -e MYSQL_USER=test \ - -e MYSQL_PASSWORD=test \ - -e MYSQL_DATABASE=test \ - mysql -``` - -This will create and run a Docker container with the name `mysql_test`. - -You can determine the exposed port by running - -``` -docker port mysql_test -``` - -*Note: depending on your Docker configuration, you will likely have to change -the host IP address.* - Licence -------