Location for shared common files in github.com/containers repos.
Go to file
OpenShift Merge Robot e27c30ee9b
Merge pull request #1372 from vrothberg/image-list-cache
libimage: ListImages: pre-compute dangling/parent
2023-03-29 13:38:38 +02:00
.github bump to golangci-lint v1.50.0 2022-10-17 15:03:07 +02:00
cmd/seccomp Gofumpt the code 2022-04-09 16:50:11 -07:00
docs pkg/config: add CONTAINERS_CONF_OVERRIDE 2023-03-23 13:48:39 +01:00
libimage layerTree: add images argument 2023-03-28 11:05:29 +02:00
libnetwork Cirrus: Update CI VM images to F37 2023-03-15 14:11:03 -04:00
logos Adding new versions of project logos 2022-11-08 17:27:41 -05:00
pkg pkg/netns: remove old pre go 1.10 workaround 2023-03-27 14:51:21 +02:00
tests new libimage package 2021-04-21 11:17:47 +02:00
tools seccomp: add CI check for up-to-date seccomp.json 2021-01-27 21:40:45 +11:00
vendor Update vendor of containers/(storage, image) 2023-03-26 06:58:39 -04:00
version bump to v0.52.0-dev 2023-03-21 09:45:03 +01:00
.cirrus.yml Cirrus: Update CI VM images to F37 2023-03-15 14:11:03 -04:00
.codespellrc Create .codespellrc 2022-03-30 11:39:49 -07:00
.gitignore Switch to ginkgo/v2 2022-03-30 10:03:17 +02:00
.golangci-extra.yml CI: enable extra linters for new code 2022-05-16 19:54:38 -07:00
.golangci.yml .golanci-lint: enable gofumpt 2022-05-16 20:01:08 -07:00
CODE-OF-CONDUCT.md [CI:DOCS] Add more logos and Fix logo in Code of Conduct 2022-05-13 16:23:23 -04:00
CONTRIBUTING.md fix typo 2018-12-10 12:57:11 +01:00
LICENSE add Apache 2.0 license file 2019-11-18 10:41:54 +01:00
Makefile Update list of codespell ignores 2023-03-26 07:02:34 -04:00
OWNERS OWNERS: add @mtrmac 2022-05-19 17:30:17 +02:00
README.md Update README.md 2022-02-23 17:58:54 +01:00
SECURITY.md Touch up Security title 2020-05-04 17:47:51 -04:00
go.mod Update vendor of containers/(storage, image) 2023-03-26 06:58:39 -04:00
go.sum Update vendor of containers/(storage, image) 2023-03-26 06:58:39 -04: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