Update documentation to explain how to login via ssh using the laradock user

This commit is contained in:
Mariano D'Agostino 2018-02-26 10:25:15 -03:00
parent 9b328cce1f
commit cbd0f1de79

View File

@ -1092,7 +1092,18 @@ To change the default forwarded port for ssh:
...
```
Then login using:
```bash
ssh -o PasswordAuthentication=no \
-o StrictHostKeyChecking=no \
-o UserKnownHostsFile=/dev/null \
-p 2222 \
-i workspace/insecure_id_rsa \
laradock@localhost
```
To login as root, replace laradock@locahost with root@localhost.
<br>
<a name="Change-the-MySQL-Version"></a>