diff options
author | Matthew Heon <matthew.heon@gmail.com> | 2018-09-27 15:30:43 -0400 |
---|---|---|
committer | Matthew Heon <matthew.heon@gmail.com> | 2018-10-01 10:23:06 -0400 |
commit | dd73525fd52b73e14351ec483acdacf178629e01 (patch) | |
tree | 2a9554e246b579a9726446124695cb55e56925b6 /docs/tutorials/podman_tutorial.md | |
parent | df978a264d7944351e7cded0a9506cab8a7bb0db (diff) | |
download | podman-dd73525fd52b73e14351ec483acdacf178629e01.tar.gz podman-dd73525fd52b73e14351ec483acdacf178629e01.tar.bz2 podman-dd73525fd52b73e14351ec483acdacf178629e01.zip |
Update docs to build a runc that works with systemd
Runc disables systemd cgroup support when build statically, so
don't tell people to do that now that we're defaulting to systemd
for cgroup management.
Also, fix some error messages to use the proper ID() call for
containers.
Signed-off-by: Matthew Heon <matthew.heon@gmail.com>
Diffstat (limited to 'docs/tutorials/podman_tutorial.md')
-rw-r--r-- | docs/tutorials/podman_tutorial.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/tutorials/podman_tutorial.md b/docs/tutorials/podman_tutorial.md index 9a6cf3e9d..a866b8eed 100644 --- a/docs/tutorials/podman_tutorial.md +++ b/docs/tutorials/podman_tutorial.md @@ -85,7 +85,7 @@ $ sudo cp bin/* /usr/libexec/cni ```console $ git clone https://github.com/opencontainers/runc.git $GOPATH/src/github.com/opencontainers/runc $ cd $GOPATH/src/github.com/opencontainers/runc -$ make static BUILDTAGS="seccomp selinux" +$ make BUILDTAGS="seccomp" $ sudo cp runc /usr/bin/runc ``` |