https://github.com/mgoltzsche/runc-compose
CLI to compose runc containers
https://github.com/mgoltzsche/runc-compose
Last synced: 9 months ago
JSON representation
CLI to compose runc containers
- Host: GitHub
- URL: https://github.com/mgoltzsche/runc-compose
- Owner: mgoltzsche
- License: apache-2.0
- Created: 2017-06-14T20:36:56.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-07-02T14:59:59.000Z (about 9 years ago)
- Last Synced: 2024-12-28T15:49:54.377Z (over 1 year ago)
- Language: Go
- Size: 131 KB
- Stars: 1
- Watchers: 4
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# runc-compose
CLI to compose runc containers
## How to build from source
Make sure [go](https://golang.org/) 1.8 is installed.
Clone the repository and run the `./make.sh` script contained in its root directory to build and test the project:
```
git clone git@github.com:mgoltzsche/runc-compose.git &&
cd runc-compose &&
./make.sh
```
The binary is saved to `bin/runc-compose`. Include it into your `PATH` to be able to run the examples:
```
export PATH="$(pwd)/bin:$PATH"
```