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