automation-tests/common
Valentin Rothberg 3dc26d743a libimage: use faster json library
Use github.com/json-iterator/go instead of the JSON library.
It is faster and battle tested.

Signed-off-by: Valentin Rothberg <rothberg@redhat.com>
2021-09-29 14:18:01 +02:00
..
.github
cmd/seccomp
docs containers.conf.5.md: simplify wording to avoit tautology 2021-09-24 19:24:50 +02:00
libimage libimage: use faster json library 2021-09-29 14:18:01 +02:00
logos
pkg Standardize on capatalize logrus messages, remove stutters 2021-09-24 14:35:52 -04:00
tests
tools
vendor libimage: use faster json library 2021-09-29 14:18:01 +02:00
version Move to v0.46.1-dev 2021-09-24 14:38:56 -04:00
.cirrus.yml Cirrus: Freshen VM images 2021-09-14 11:41:16 -04:00
.gitignore
.golangci.yml
CODE-OF-CONDUCT.md
CONTRIBUTING.md
LICENSE
Makefile Remove no_libsubid flag 2021-08-10 13:20:10 -04:00
OWNERS add @Luap99 to OWNERS 2021-06-10 11:08:52 +02:00
README.md Fix `pkg/sysctl` path typo 2021-08-16 20:36:46 -05:00
SECURITY.md
go.mod libimage: use faster json library 2021-09-29 14:18:01 +02:00
go.sum libimage: use faster json library 2021-09-29 14:18:01 +02:00

README.md

containers/common

Location for shared common files and common go code to manage those files in github.com/containers repos.

The common files to one or more projects in the containers group will be kept in this repository.

It will be up to the individual projects to include the files from this repository.

seccomp

The seccomp package in pkg/seccomp is a set of Go libraries used by container runtimes to generate and load seccomp mappings into the kernel.

seccomp (short for secure computing mode) is a BPF based syscall filter language and present a more conventional function-call based filtering interface that should be familiar to, and easily adopted by, application developers.

Building the seccomp.json file

The make target make seccomp.json generates the seccomp.json file, which contains the allowed list of syscalls that can be used by container runtime engines like CRI-O, Buildah, Podman and Docker, and container runtimes like OCI Runc to control the syscalls available to containers.

Supported build tags

Contributing

When developing this library, please use make (or make … BUILDTAGS=…) to take advantage of the tests and validation.

Contact