Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ptrcnull/miniroot
docker but simpler
https://github.com/ptrcnull/miniroot
Last synced: 25 days ago
JSON representation
docker but simpler
- Host: GitHub
- URL: https://github.com/ptrcnull/miniroot
- Owner: ptrcnull
- Created: 2022-01-18T12:23:41.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2022-01-19T00:05:49.000Z (almost 3 years ago)
- Last Synced: 2024-06-20T03:55:56.183Z (5 months ago)
- Language: Go
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# miniroot
> docker but simpler
In contrast to Docker, miniroot **does not**:
- have a concept of images and layers
- isolate networks
- handle volumes or bind mounts
- have a central daemonIt's just a simple tool that utilises namespaces to run applications in a semi-isolated environment.
### Usage
- get rootfs (you can use `docker export container_name > export.tar` for that)
- extract it somewhere
- run miniroot; example:
```
miniroot -root "/opt/something" -workdir "/usr/src/app" -init "/usr/local/bin/npm start"
```