I have the following markdown snippet which will be visible on Github:
1. Ask a supervisor for a `cmprod.pem` file and move it into the `~/.ssh` folder.
2. Run `chmod 600 ~/.ssh/cmprod.pem`
3. Run `eb ssh` and type `yes` when it asks if you would like to add the key to your keychain.
4. Once connected via SSH, to access the application's source code, perform the following steps
- `sudo docker ps`
- Copy the desired value from the `CONTAINER ID` column
- Run `sudo docker exec -it $CONTAINER_ID rails c` using the copied value.
The problem is that the nested list (the three bullet points under step 4) are not formatting correctly. They end up looking like this:
- Ask a supervisor for a
cmprod.pemfile and move it into the~/.sshfolder. - Run
chmod 600 ~/.ssh/cmprod.pem - Run
eb sshand typeyeswhen it asks if you would like to add the key to your keychain. - Once connected via SSH, to access the application's source code, perform the following steps
-
sudo docker ps- Copy the desired value from theCONTAINER IDcolumn- Run
sudo docker exec -it $CONTAINER_ID rails cusing the copied value.
- Run