Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions content/manuals/engine/security/apparmor.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ in the Docker Engine source repository.
The `docker-default` profile is the default for running containers. It is
moderately protective while providing wide application compatibility. The
profile is generated from the following
[template](https://github.com/moby/moby/blob/master/profiles/apparmor/template.go).
[template](https://github.com/moby/profiles/blob/main/apparmor/template.go).

When you run a container, it uses the `docker-default` policy unless you
override it with the `security-opt` option. For example, the following
Expand Down Expand Up @@ -280,4 +280,4 @@ Advanced users and package managers can find a profile for `/usr/bin/docker`
in the Docker Engine source repository.

The `docker-default` profile for containers lives in
[profiles/apparmor](https://github.com/moby/moby/tree/master/profiles/apparmor).
[profiles/apparmor](https://github.com/moby/profiles/blob/main/apparmor).
2 changes: 1 addition & 1 deletion content/manuals/engine/security/seccomp.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ The default `seccomp` profile provides a sane default for running containers wit
seccomp and disables around 44 system calls out of 300+. It is moderately
protective while providing wide application compatibility. The default Docker
profile can be found
[here](https://github.com/moby/moby/blob/master/profiles/seccomp/default.json).
[here](https://github.com/moby/profiles/blob/main/seccomp/default.json).

In effect, the profile is an allowlist that denies access to system calls by
default and then allows specific system calls. The profile works by defining a
Expand Down