Errors whilst following an installation guide for jellyfish media server

Following a step by step installation guide for jellyfish media player,
got to step 4 where i am supposed to create and run a container

docker run -d \
>>  --name jellyfin \
>>  --net=host \
>>  --volume jellyfin-config:/config \
>>  --volume jellyfin-cache:/cache \
>>  --mount type=bind,source=/path/to/media,target=/media \
>>  --restart=unless-stopped \
>>  jellyfin/jellyfin

and im presented with this red text

At line:2 char:4
+  --name jellyfin \
+    ~
Missing expression after unary operator '--'.
At line:2 char:4
+  --name jellyfin \
+    ~~~~
Unexpected token 'name' in expression or statement.
At line:3 char:4
+  --net=host \
+    ~
Missing expression after unary operator '--'.
At line:3 char:4
+  --net=host \
+    ~~~~~~~~
Unexpected token 'net=host' in expression or statement.
At line:4 char:4
+  --volume jellyfin-config:/config \
+    ~
Missing expression after unary operator '--'.
At line:4 char:4
+  --volume jellyfin-config:/config \
+    ~~~~~~
Unexpected token 'volume' in expression or statement.
+  --mount type=bind,source=/path/to/media,target=/media \
+    ~~~~~
Unexpected token 'mount' in expression or statement.
Not all parse errors were reported.  Correct the reported errors and try again.
    + CategoryInfo          : ParserError: (:) [], ParentContainsErrorRecordException
    + FullyQualifiedErrorId : MissingExpressionAfterOperator

Please, format your post according to the following guide: How to format your forum posts
In short: please, use </> button to share codes, terminal outputs, error messages or anything that can contain special characters which would be interpreted by the MarkDown filter. Use the preview feature to make sure your text is formatted as you would expect it and check your post after you have sent it so you can still fix it.

Example code block:

```
echo "I am a code."
echo "An athletic one, and I wanna run."
```

After fixing your post, please send a new comment so people are notified about the fixed content.


i have fixed the formatting

The command you share is for a mac/linux terminal.

The line continuation character in PowerShell is different. Try this:

docker run -d `
  --name jellyfin `
  --net=host `
  --volume jellyfin-config:/config `
  --volume jellyfin-cache:/cache `
  --mount type=bind,source=/path/to/media,target=/media `
  --restart=unless-stopped `
  jellyfin/jellyfin

Note: the source in --mount type=bind,source=/path/to/media,target=/media can’t be right. You need to point it to an existing folder. Bindings Windows folders into a container path will result in a performance degradation.