1
0
mirror of https://github.com/pavel-odintsov/fastnetmon synced 2024-11-26 13:14:31 +01:00

Fixed typo in command

This commit is contained in:
Pavel Odintsov 2022-04-30 16:19:13 +01:00
parent d9c8f790bd
commit 313b638e4d

@ -11,7 +11,7 @@ jobs:
steps:
- run:
name: Create folder to share data between host and Docker container with relaxed permissions to allow use of save / restore cache logic
command: sudo kdir /data; sudo chmod 770 /data
command: sudo mkdir /data; sudo chmod 770 /data
- run:
name: Docker with priviledged mode to run chroot inside and we use tail -f to keep container running
command: sudo docker run -d -v /sys/fs/cgroup/:/sys/fs/cgroup:ro -v /data:/data:rw --privileged --cap-add SYS_ADMIN --name linux_priviledged_container debian:bullseye tail -f /dev/null