Most container runtimes are based on namespaces and cgroups (docker, lxc, runc). I am wondering if there are on-the-market or open-source containers that are not based on these technologies ? Do you know some names ?
Are there any containers running without namespaces and cgroups?
525 Views Asked by dada At
1
There are 1 best solutions below
Related Questions in DOCKER
- Docker, redirecting to virtualbox port
- Collect only from STDERR when using Docker syslog logging driver
- How can I create a docker image from the current system?
- Moving Docker Containers Around
- How can I test with serverspec that Jenkins is running in a jenkins docker container?
- How to deploy django 1.8 on Elastic Beanstalk using Docker
- Emulating `docker run` using the golang docker API
- Where are docker images and containers stored when we use it with Windows?
- docker compose, vagrant and insecure Repository
- Commit data in a mysql container
- oh-my-zsh installation returns non zero code
- Use custom docker binary in CoreOS
- Can I use docker image ubuntu 14.04 if my host is 12.04?
- Hide/obfuscate environmental parameters in docker
- How to add initial users when starting a RabbitMQ Docker container?
Related Questions in CONTAINERS
- Positioning child at bottom of parent with scroll
- Where are docker images and containers stored when we use it with Windows?
- c++ container very efficient at adding elements to the end
- Set-like alternative for yaml files
- Julia: Enforce constraints on objects in a container?
- Control snapping on resize in C# scrollable container
- Creating a vertically draggable container in Adobe Flex 3.5
- How to set the read ACL on container in open stack swift such that allow Read for all users and deny for one user
- Which STL container(s)/algorithm(s) could I use to solve this?
- Persistent error coming from libusb0
- Make responsive text relative to responsive image?
- Initializing database in the base image of a running container
- Is there unique-value / set container in java-script
- Can we change width of container in css using Bootstrap3
- Use of container docker as a proxy for CF app to get public IP
Related Questions in LXC
- LXC: Is there a way to setup nameserver on container config?
- Exec is not supported by the lxc driver: how to get around this?
- The second command doesn't run as root
- Is it possible to read messages passed over stdout from within a Docker container? (without `docker logs`)
- Kernel configurations for lxc
- Ubuntu 14.01 Host / Ubuntu 14.01 Container; Postfix does not send mail; telnet does not connect to outside host
- How to programmatically monitor if a docker container exited?
- Should you install nginx inside docker?
- lxc container can't use nfc usb device
- has the linux kernel support sctp protocol in container of LXC/docker yet?
- Distributed Systems NSQ topology pattern on Docker containers
- How i can get the current state of a lxc container with python?
- lxc-start: Invalid argument - failed to clone
- Dockerfile : not able to use add to map local file to container
- Building a container with debootstrap
Related Questions in RUNC
- How to backup and restore docker containers (without the original docker run command)
- runc installation error in Slackware 14.2
- Network-packets buffering in kernel qdiscs module
- What is a file pending_segments_runc under /usr/share/elasticsearch/data/nodes/0/_state/ in an Elasticsearch node
- Docker not able to start any container on Centos7
- "make: go: command not found" - although go binary is in $PATH
- Garbage output on raspberry pi3 B/B+ when running and OCI container
- joined process cannot write ns_last_pid of the container
- runc container cpu usage
- Segmentation fault when executing binary in runc container
- What process is the parent process of containerd-shim?
- How to run Wasm module with podman + crun?
- CRIO runtime spec for OCI v1alpha1 compliance
- How to use LD_PRELOAD in container runc
- How does OCI/runc system path constraining work to prevent remounting such paths?
Related Questions in RKT
- Execute command in rkt container, output results, then exit
- "Missing manifest" error at $ rkt run
- mounted volumes don't get filled with docker image content
- rkt networking on ubuntu
- OpenPGP error while using Meta Discovery
- Gradle rkt appc plugin
- When and Why should I care about different Container Runtimes?
- Rkt pod exited immediately (without logs)
- How to insert a number in correct position of a list racket?
- Kubernetes refuses to work with rkt, containers not starting, wrong systemd error
- kubernetes node doesn't get registered
- rkt discovery failed error while bringing flannel up (Kubernetes setup)
- How to use rkt as container runtime instead of docker for kubernetes?
- Why does Docker have a daemon?
- Can't start iscsiadm inside rkt container on CoreOS
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Before the introduction of cgroups and namespaces, the isolation consisted to use chroot(). But this was insufficient from a security point of view. As only the file system was isolated. And it is possible to escape from a "chrooted" environment.
This link provides an history of the containerization techniques in the Unix/Linux world.