File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -65,8 +65,11 @@ mysqldump -u jq_wordpress -p wordpress > wordpress.sql # Credentials are in the
65
65
Then, on your local machine, run:
66
66
67
67
``` sh
68
- scp wp-01.ops.jquery.net:~ /wordpress.sql . # This assumes your SQL dump is in your home directory on the server
69
- docker exec -i jquerydb mysql -u YOUR_MYSQL_USER -p YOUR_MYSQL_DATABASE < wordpress.sql
68
+ # This assumes your SQL dump is in your home directory on the server
69
+ scp wp-01.ops.jquery.net:~ /wordpress.sql .
70
+ # These are the same as what's in your .env file
71
+ # Note there is no space between -p and the password
72
+ docker exec -i jquerydb mysql -u YOUR_MYSQL_USER -pYOUR_MYSQL_PASSWORD YOUR_MYSQL_DATABASE < wordpress.sql
70
73
```
71
74
72
75
8 . Visit http://local.jquery.com , or https://local.jquery.com if you created certs.
You can’t perform that action at this time.
0 commit comments