Skip to content
This repository was archived by the owner on Feb 6, 2023. It is now read-only.

Fix docker commands for downloading mysql image. #11

Merged
merged 1 commit into from
Jun 25, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions md/big_data/intro-to-sql.md
Original file line number Diff line number Diff line change
Expand Up @@ -138,8 +138,8 @@ In order to connect to a MySQL instance, you need to know a few things
The easiest way to install a local MySQL instance on any machine is with a docker container. The following line will start up an instance

```
$ docker run --name local-mysql -e MYSQL_ROOT_PASSWORD=password\
-p 3306:3306 -d mysql:tag
$ docker pull mysql
$ docker run --name local-mysql -e MYSQL_ROOT_PASSWORD=password -p 3306:3306 -d mysql
```

This will allow you to connect using the following
Expand Down