You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: security/secrets/README.md
+6-6
Original file line number
Diff line number
Diff line change
@@ -268,20 +268,20 @@ the secret from memory.
268
268
In this step you will remove all secrets and services,as well as clean up any other artifacts created in this lab.
269
269
270
270
271
-
1. Remove all secrets on the host.
271
+
1. Remove all services on the host.
272
272
273
-
This command will remove **all**secrets on your Docker host. Only perform this step if you know you will not use these secrets again.
273
+
This command will remove **all**services on your Docker host. Only perform this step if you know you know you do not need any of the services running on your system.
274
274
275
275
```
276
-
$ docker secret rm $(docker secret ls -q)
276
+
$ docker service rm $(docker service ls -q)
277
277
<Snip>
278
278
```
279
-
2. Remove all services on the host.
279
+
2. Remove all secrets on the host.
280
280
281
-
This command will remove **all**services on your Docker host. Only perform this step if you know you know you do not need any of the services running on your system.
281
+
This command will remove **all**secrets on your Docker host. Only perform this step if you know you will not use these secrets again.
0 commit comments