File tree 1 file changed +16
-3
lines changed
1 file changed +16
-3
lines changed Original file line number Diff line number Diff line change @@ -29,20 +29,33 @@ This method leverages pre-built Docker images to quickly and easily spin up a lo
29
29
30
30
1 . Ensure that the Docker daemon is running:
31
31
32
- {{< tabs items="MacOS, Linux " >}}
32
+ {{< tabs items="As root, Rootless " >}}
33
33
{{< tab >}}
34
34
```shell
35
- sudo systemctl start docker
35
+ sudo systemctl status docker
36
36
```
37
37
{{< /tab >}}
38
38
39
39
{{< tab >}}
40
40
```shell
41
- dockerd
41
+ systemctl --user status docker
42
42
```
43
43
{{< /tab >}}
44
44
{{< /tabs >}}
45
45
46
+ This should output something like:
47
+
48
+ ``` plaintext
49
+ ● docker.service - Docker Application Container Engine (Rootless)
50
+ Loaded: loaded (/home/johnny/.config/systemd/user/docker.service; enabled; preset: enable>
51
+ Active: active (running) since Mon 2025-01-27 14:04:16 AST; 3min 27s ago
52
+ Invocation: b0aea9e287394e268914b54c6177370c
53
+ Docs: https://docs.docker.com/go/rootless/
54
+ Main PID: 46707 (rootlesskit)
55
+ Tasks: 297
56
+ Memory: 524.4M (peak: 622.2M)
57
+ ```
58
+
46
59
1. Create the following Docker file and call it `four-nodes.yaml`:
47
60
48
61
```shell
You can’t perform that action at this time.
0 commit comments