Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nlf/dlite
The simplest way to use Docker on OS X
https://github.com/nlf/dlite
Last synced: 6 days ago
JSON representation
The simplest way to use Docker on OS X
- Host: GitHub
- URL: https://github.com/nlf/dlite
- Owner: nlf
- License: mit
- Created: 2015-08-03T20:45:44.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2024-05-06T08:39:55.000Z (7 months ago)
- Last Synced: 2024-11-20T17:43:59.125Z (22 days ago)
- Language: Go
- Homepage:
- Size: 12.2 MB
- Stars: 2,338
- Watchers: 49
- Forks: 53
- Open Issues: 25
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
- awesome-docker - DLite - Simplest way to use Docker on OSX, no VM needed. By [@nlf](https://github.com/nlf) (Development with Docker / Development Environment)
- awesome-docker - DLite - Simplest way to use Docker on OSX, no VM needed. By [@nlf](https://github.com/nlf) (Development with Docker / Development Environment)
- starred-awesome - dlite - The simplest way to use Docker on OS X (Go)
- awesome - dlite - The simplest way to use Docker on OS X (Go)
- awesome-starred - nlf/dlite - The simplest way to use Docker on OS X (others)
README
# DLite
THIS PROJECT NEEDS A NEW MAINTAINER - I have stopped using OSX and no longer have time to continue to work on this. Open an issue if you're interested.
this branch represents the latest *beta* version. the stable version can be found in the legacy branch.
## Building
install dependencies
```sh
brew install opam golang libev
opam init
eval `opam config env`
opam install uri qcow.0.7.0 conf-libev logs fmt qcow-format
go get -u github.com/jteeuwen/go-bindata/...
git submodule init
git submodule update
```update dependencies (use this if you've already built the project before)
```sh
git submodule foreach git pull origin master
opam update
opam upgrade
```build the binary
```sh
go generate
go build
```