https://github.com/andrestc/docker-machine-driver-cloudstack
Cloudstack docker-machine driver
https://github.com/andrestc/docker-machine-driver-cloudstack
cloudstack docker-machine go
Last synced: 3 months ago
JSON representation
Cloudstack docker-machine driver
- Host: GitHub
- URL: https://github.com/andrestc/docker-machine-driver-cloudstack
- Owner: andrestc
- License: mit
- Created: 2016-11-11T13:32:10.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2020-03-25T20:52:05.000Z (almost 6 years ago)
- Last Synced: 2025-02-01T14:51:12.272Z (12 months ago)
- Topics: cloudstack, docker-machine, go
- Language: Go
- Size: 64.5 KB
- Stars: 2
- Watchers: 3
- Forks: 7
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Docker Machine CloudStack Driver
Docker Machine CloudStack Driver is a driver for [Docker Machine](https://docs.docker.com/machine/).
It allows to create Docker hosts on [Apache CloudStack](https://cloudstack.apache.org/) and
[Accelerite CloudPlatform](http://cloudplatform.accelerite.com/).
## Requirements
* [Docker Machine](https://docs.docker.com/machine/) 0.5.1 or later
## Installation
Download the binary from follwing link and put it within your PATH (ex. `/usr/local/bin`)
https://github.com/andrestc/docker-machine-driver-cloudstack/releases/latest
## Usage
```bash
docker-machine create -d cloudstack \
--cloudstack-api-url CLOUDSTACK_API_URL \
--cloudstack-api-key CLOUDSTACK_API_KEY \
--cloudstack-secret-key CLOUDSTACK_SECRET_KEY \
--cloudstack-template "Ubuntu Server 14.04" \
--cloudstack-zone "zone01" \
--cloudstack-service-offering "Small" \
--cloudstack-expunge \
docker-machine
```
## Acknowledgement
The driver is originally written by [@svanharmelen](https://github.com/svanharmelen) and [@atsaki](https://github.com/atsaki).