Correct spots where code formatting got ignored

pull/1020/head
Chaz Larson 2 years ago committed by meisnate12
parent e2d00c2f54
commit c4f3ae20b5

@ -56,6 +56,7 @@ The Docker install is discussed here: [Installing Docker](https://docs.docker.co
Once you have Docker installed, test it at the command line with: Once you have Docker installed, test it at the command line with:
[type this into your terminal] [type this into your terminal]
``` ```
docker run --rm hello-world docker run --rm hello-world
``` ```
@ -116,6 +117,7 @@ PMM, inside that Docker container, can only see other things *inside the contain
Go to your home directory and create a new directory: Go to your home directory and create a new directory:
[type this into your terminal] [type this into your terminal]
``` ```
cd ~ cd ~
mkdir plex-meta-manager mkdir plex-meta-manager
@ -124,6 +126,7 @@ mkdir plex-meta-manager
cd into that directory and create another directory: cd into that directory and create another directory:
[type this into your terminal] [type this into your terminal]
``` ```
cd ~/plex-meta-manager cd ~/plex-meta-manager
mkdir config mkdir config
@ -132,6 +135,7 @@ mkdir config
get the full path: get the full path:
[type this into your terminal] [type this into your terminal]
``` ```
pwd pwd
``` ```
@ -140,6 +144,7 @@ This will display a full path:
````{tab} Linux ````{tab} Linux
<br/> <br/>
``` ```
/home/YOURUSERNAME/plex-meta-manager /home/YOURUSERNAME/plex-meta-manager
``` ```
@ -147,6 +152,7 @@ This will display a full path:
```` ````
````{tab} OS X: ````{tab} OS X:
<br/> <br/>
``` ```
/Users/YOURUSERNAME/plex-meta-manager /Users/YOURUSERNAME/plex-meta-manager
``` ```
@ -154,6 +160,7 @@ This will display a full path:
```` ````
````{tab} Windows: ````{tab} Windows:
<br/> <br/>
``` ```
C:\Users\YOURUSERNAME\plex-meta-manager C:\Users\YOURUSERNAME\plex-meta-manager
``` ```
@ -164,6 +171,7 @@ Add "config" onto the end of that to get the host path to your config directory,
````{tab} Linux ````{tab} Linux
<br/> <br/>
``` ```
/home/YOURUSERNAME/plex-meta-manager/config /home/YOURUSERNAME/plex-meta-manager/config
``` ```
@ -171,6 +179,7 @@ Add "config" onto the end of that to get the host path to your config directory,
```` ````
````{tab} OS X: ````{tab} OS X:
<br/> <br/>
``` ```
/Users/YOURUSERNAME/plex-meta-manager/config /Users/YOURUSERNAME/plex-meta-manager/config
``` ```
@ -178,6 +187,7 @@ Add "config" onto the end of that to get the host path to your config directory,
```` ````
````{tab} Windows: ````{tab} Windows:
<br/> <br/>
``` ```
C:\Users\YOURUSERNAME\plex-meta-manager\config C:\Users\YOURUSERNAME\plex-meta-manager\config
``` ```
@ -188,6 +198,7 @@ You'll need to add this to the docker command every time you run it, like this:
````{tab} Linux ````{tab} Linux
<br/> <br/>
``` ```
docker run --rm -it -v "/home/YOURUSERNAME/plex-meta-manager/config:/config:rw" meisnate12/plex-meta-manager docker run --rm -it -v "/home/YOURUSERNAME/plex-meta-manager/config:/config:rw" meisnate12/plex-meta-manager
``` ```
@ -195,6 +206,7 @@ docker run --rm -it -v "/home/YOURUSERNAME/plex-meta-manager/config:/config:rw"
```` ````
````{tab} OS X: ````{tab} OS X:
<br/> <br/>
``` ```
docker run --rm -it -v "/Users/YOURUSERNAME/plex-meta-manager/config:/config:rw" meisnate12/plex-meta-manager docker run --rm -it -v "/Users/YOURUSERNAME/plex-meta-manager/config:/config:rw" meisnate12/plex-meta-manager
``` ```
@ -202,6 +214,7 @@ docker run --rm -it -v "/Users/YOURUSERNAME/plex-meta-manager/config:/config:rw"
```` ````
````{tab} Windows: ````{tab} Windows:
<br/> <br/>
``` ```
docker run --rm -it -v "C:\Users\YOURUSERNAME\plex-meta-manager\config:/config:rw" meisnate12/plex-meta-manager docker run --rm -it -v "C:\Users\YOURUSERNAME\plex-meta-manager\config:/config:rw" meisnate12/plex-meta-manager
``` ```
@ -272,6 +285,7 @@ First, make a copy of the template:
````{tab} Linux ````{tab} Linux
<br/> <br/>
Get a copy of the template to edit [type this into your terminal]: Get a copy of the template to edit [type this into your terminal]:
``` ```
curl -fLvo config/config.yml https://raw.githubusercontent.com/meisnate12/Plex-Meta-Manager/master/config/config.yml.template curl -fLvo config/config.yml https://raw.githubusercontent.com/meisnate12/Plex-Meta-Manager/master/config/config.yml.template
``` ```

Loading…
Cancel
Save