forked from p34709852/monkey
island: Add quotes around --user argument in docker setup
This commit is contained in:
parent
7b14b917cd
commit
ca5450b932
|
@ -78,7 +78,7 @@ been signed by a private certificate authority.
|
||||||
--rm \
|
--rm \
|
||||||
--name monkey-island \
|
--name monkey-island \
|
||||||
--network=host \
|
--network=host \
|
||||||
--user $(id -u ${USER}):$(id -g ${USER}) \
|
--user "$(id -u ${USER}):$(id -g ${USER})" \
|
||||||
--volume "$(realpath ./monkey_island_data)":/monkey_island_data \
|
--volume "$(realpath ./monkey_island_data)":/monkey_island_data \
|
||||||
guardicore/monkey-island:1.10.0 --setup-only
|
guardicore/monkey-island:1.10.0 --setup-only
|
||||||
```
|
```
|
||||||
|
@ -119,7 +119,7 @@ been signed by a private certificate authority.
|
||||||
sudo docker run \
|
sudo docker run \
|
||||||
--name monkey-island \
|
--name monkey-island \
|
||||||
--network=host \
|
--network=host \
|
||||||
--user $(id -u ${USER}):$(id -g ${USER}) \
|
--user "$(id -u ${USER}):$(id -g ${USER})" \
|
||||||
--volume "$(realpath ./monkey_island_data)":/monkey_island_data \
|
--volume "$(realpath ./monkey_island_data)":/monkey_island_data \
|
||||||
guardicore/monkey-island:1.10.0
|
guardicore/monkey-island:1.10.0
|
||||||
```
|
```
|
||||||
|
|
Loading…
Reference in New Issue