Skip to content

Commit

Permalink
--privileged not needed in build_kernel.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
andiradulescu committed Jul 18, 2024
1 parent d2505a3 commit f8db96e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build_kernel.sh
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ if ! docker inspect agnos-kernel &>/dev/null; then
docker build -f Dockerfile.kernel -t agnos-kernel $DIR
fi
echo "Starting agnos-kernel container"
CONTAINER_ID=$(docker run -d --privileged -v $DIR:$DIR -w $DIR agnos-kernel)
CONTAINER_ID=$(docker run -d -v $DIR:$DIR -w $DIR agnos-kernel)

# Cleanup container on exit
trap "echo \"Cleaning up container:\"; \
Expand Down

0 comments on commit f8db96e

Please sign in to comment.