-
Notifications
You must be signed in to change notification settings - Fork 431
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: AnaisUrlichs <[email protected]>
- Loading branch information
1 parent
cc534be
commit 11c202e
Showing
9 changed files
with
169 additions
and
74 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
# Using the Tracee container image on MacOS with Parallels and Vagrant | ||
|
||
There are a few more steps involved in running Tracee through a container image on arm64 (M1). | ||
|
||
Prerequisites: | ||
|
||
* [Vagrant CLI](https://developer.hashicorp.com/vagrant/downloads) installed | ||
* [Parallels Pro](https://www.parallels.com/uk/products/desktop/pro/) installed | ||
|
||
First, clone the Tracee Git repository and move into the root directory: | ||
|
||
```console | ||
git clone [email protected]:aquasecurity/tracee.git | ||
|
||
cd tracee | ||
``` | ||
|
||
Next, use Vagrant to start a Parallels VM: | ||
|
||
```console | ||
vagrant up | ||
``` | ||
|
||
This will use the [Vagrantfile](https://github.com/aquasecurity/tracee/blob/main/Vagrantfile) in the root of the Tracee directory. | ||
|
||
Lastly, ssh into the created VM: | ||
|
||
```console | ||
vagrant ssh | ||
``` | ||
|
||
Now, it is possible to run the Tracee Container image: | ||
|
||
```console | ||
docker run \ | ||
--name tracee --rm -it \ | ||
--pid=host --cgroupns=host --privileged \ | ||
-v /etc/os-release:/etc/os-release-host:ro \ | ||
aquasec/tracee:latest | ||
``` | ||
|
||
To learn how to install Tracee in a production environment, [check out the Kubernetes guide](./kubernetes-quickstart). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters