Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dgageot/docker-machine-daemon
A server for Docker Machine
https://github.com/dgageot/docker-machine-daemon
Last synced: 15 days ago
JSON representation
A server for Docker Machine
- Host: GitHub
- URL: https://github.com/dgageot/docker-machine-daemon
- Owner: dgageot
- License: apache-2.0
- Created: 2016-01-19T16:43:42.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2016-03-03T06:20:06.000Z (over 8 years ago)
- Last Synced: 2024-10-18T07:35:25.900Z (27 days ago)
- Language: Go
- Homepage:
- Size: 942 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## A server for Docker Machine.
An http server that exposes the Docker Machine actions.
## Installationgo get -u github.com/dgageot/docker-machine-daemon
## Build from sources
make build
## Run./docker-machine-daemon
## Samples
### List machines
http --timeout 60 GET http://localhost:8080/machine
### Create machine
http --timeout 60 --form PUT http://localhost:8080/machine/name driver=virtualbox
### Start machine
http --timeout 60 POST http://localhost:8080/machine/name/start
### Stop machine
http --timeout 60 POST http://localhost:8080/machine/name/stop
### Restart machine
http --timeout 60 POST http://localhost:8080/machine/name/restart
### Remove machine
http --timeout 60 POST http://localhost:8080/machine/name/remove