Skip to content

Commit

Permalink
REVMI-272 Comment out mysql port (openedx#424)
Browse files Browse the repository at this point in the history
  • Loading branch information
crice100 authored Jun 13, 2019
1 parent 0f096a0 commit 6d1a622
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
11 changes: 9 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -598,8 +598,15 @@ How do I connect to the databases from an outside editor?
---------------------------------------------------------

To connect to the databases from an outside editor (such as MySQLWorkbench),
use the values below. Note that the username and password will vary depending
on the database. For all of the options, see ``provision.sql``.
first uncomment these lines from ``docker-compose.yml``'s ``mysql`` section:

.. code-block::
ports:
- "3506:3306"
Then connect using the values below. Note that the username and password will
vary depending on the database. For all of the options, see ``provision.sql``.

- Host: ``localhost``
- Port: ``3506``
Expand Down
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,8 @@ services:
MYSQL_ROOT_PASSWORD: ""
MYSQL_ALLOW_EMPTY_PASSWORD: "yes"
image: mysql:5.6
ports:
- "3506:3306"
# ports:
# - "3506:3306"
volumes:
- mysql_data:/var/lib/mysql

Expand Down

0 comments on commit 6d1a622

Please sign in to comment.