diff --git a/README.md b/README.md index e4516bf0..12b0e1ad 100644 --- a/README.md +++ b/README.md @@ -128,6 +128,7 @@ $> curl --silent http://212.47.248.251 | head -n1 # you can also open your brows ### master (unreleased) +* Fix rm subcommand ([#17](https://github.com/scaleway/docker-machine-driver-scaleway/issues/17)) * Initial homebrew support ([#9](https://github.com/scaleway/docker-machine-driver-scaleway/issues/9)) View full [commits list](https://github.com/scaleway/docker-machine-driver-scaleway/compare/v1.0.1x...master) diff --git a/driver/scaleway.go b/driver/scaleway.go index fd1ac1dc..1f8ae99b 100644 --- a/driver/scaleway.go +++ b/driver/scaleway.go @@ -143,6 +143,7 @@ func (d *Driver) Create() (err error) { return } d.IPAddress = ip.IP.Address + d.IPID = ip.IP.ID d.ServerID, err = api.CreateServer(cl, &api.ConfigCreateServer{ ImageName: defaultImage, CommercialType: d.commercialType,