Typo in Github causes Docker installation to fail

I tried to run syncloud from docker on an old intel PC with debian installed but failed:

# docker run \
  --restart=always \
  --name=syncloud \
  --volume=/storage:/opt/disk/internal \
  --privileged \
  --detach=true \
  -–network=host \
  --publish=443:443 \
  syncloud/platform-buster-amd64:22.02
unknown shorthand flag: 'â' in -–network=host
See 'docker run --help‘.
# docker ps
CONTAINER ID   IMAGE     COMMAND   CREATED   STATUS    PORTS     NAMES

Can you help me?

Solved. Posting it here already helped: There is a typo in Docker · syncloud/platform Wiki · GitHub It should not be

-–network=host \

but

--network=host \

(The second dash is not a dash).

1 Like

Fixed, dash was somehow corrupted :slight_smile:

It works great. Maybe it would be good to add to the wiki that you can enter the docker container with

docker exec -it syncloud bash

I know this is docker stuff and not syncloud stuff but it would still help.