Skip to content

Commit a775700

Browse files
committed
chore(docs): update aarch64 references to latest in docs
commit: d2b8dbe (main), cherry-pick
1 parent 59ee33d commit a775700

File tree

3 files changed

+17
-23
lines changed

3 files changed

+17
-23
lines changed

docs/contributing/building/containers.md

Lines changed: 5 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -20,24 +20,17 @@ release):
2020
latest daily built container images (based on the version currently being
2121
developed).
2222

23-
- **aquasec/tracee:dev** (arch: amd64)
24-
25-
Multiple architecture tags:
26-
27-
- **aquasec/tracee:x86_64-dev**
28-
- **aquasec/tracee:aarch64-dev**
23+
- **aquasec/tracee:dev**
2924

3025
2. **RELEASE (official versions) container images:**
3126

32-
Preferable aliases for latest released images (per arch)):
27+
Preferable alias for latest released image:
3328

34-
- **aquasec/tracee:x86_64**
35-
- **aquasec/tracee:aarch64**
29+
- **aquasec/tracee:latest**
3630

37-
And the container images for each released version of Tracee (per arch):
31+
And the container images for each released version of Tracee:
3832

39-
- **aquasec/tracee:x86_64-VERSION**
40-
- **aquasec/tracee:aarch64-VERSION**
33+
- **aquasec/tracee:VERSION**
4134

4235
## Generating Tracee Container Images
4336

docs/getting-started/docker-quickstart.md

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,14 @@ This section details how you can run Tracee through a container image.
44

55
## Prerequisites
66

7-
Please ensure that Docker or another container runtime is working on your machine.
7+
Please ensure that Docker or another container runtime is working on your machine.
8+
89
## Run the Tracee container images
910

1011
All of the Tracee container images are stored in a public registry on [Docker Hub.](https://hub.docker.com/r/aquasec/tracee)
1112
You can easily start experimenting with Tracee using the Docker image.
1213

13-
### On x86 architecture, please run the following command:
14+
### On x86 architecture, please run the following command
1415

1516
```console
1617
docker run \
@@ -20,45 +21,45 @@ docker run \
2021
aquasec/tracee:latest
2122
```
2223

23-
### Steps to run the Tracee container image on arm64:
24+
### Steps to run the Tracee container image on arm64
2425

2526
There are a few more steps involved in running Tracee through a container image on arm64 (M1).
2627

2728
Prerequisites:
2829

2930
* [Vagrant CLI](https://developer.hashicorp.com/vagrant/downloads) installed
30-
* [Parallels Pro](https://www.parallels.com/uk/products/desktop/pro/) installed
31+
* [Parallels Pro](https://www.parallels.com/uk/products/desktop/pro/) installed
3132

3233
First, clone the Tracee Git repository and move into the root directory:
34+
3335
```console
3436
git clone [email protected]:aquasecurity/tracee.git
3537

3638
cd tracee
3739
```
3840

3941
Next, use Vagrant to start a Parallels VM:
40-
```
42+
43+
```console
4144
vagrant up
4245
```
4346

4447
This will use the [Vagrantfile](https://github.com/aquasecurity/tracee/blob/main/Vagrantfile) in the root of the Tracee directory.
4548

4649
Lastly, ssh into the created VM:
50+
4751
```console
4852
vagrant ssh
4953
```
5054

51-
Now, it is possible to run the Tracee Container image, using the `aarch64` tag:
55+
Now, it is possible to run the Tracee Container image:
56+
5257
```console
5358
docker run \
5459
--name tracee --rm -it \
5560
--pid=host --cgroupns=host --privileged \
5661
-v /etc/os-release:/etc/os-release-host:ro \
57-
aquasec/tracee:aarch64
62+
aquasec/tracee:latest
5863
```
5964

60-
The Tracee output should be similar to the following screenshot:
61-
62-
![Tracee Container Image output in Vragrant on arm64](../images/docker-arm64.png)
63-
6465
To learn how to install Tracee in a production environment, [check out the Kubernetes guide](./kubernetes-quickstart).

docs/images/docker-arm64.png

-122 KB
Binary file not shown.

0 commit comments

Comments
 (0)