lxd 0.0.4 copy "lxd: ^0.0.4" to clipboard
lxd: ^0.0.4 copied to clipboard

outdated

Provides a client to access lxd, which allows you to manage containers on a Linux system.

Pub Package

Provides a client to access lxd, which allows you to manage containers on a Linux system.

Example #

import 'package:lxd/lxd.dart';

var client = LxdClient();

print('Looking for image...');
var image = await client.findRemoteImage('https://cloud-images.ubuntu.com/releases', '20.04');
if (image == null) {
  print("Can't find image");
  return;
}
print('Creating instance...');
var operation = await client.createInstance(image: image);
operation = await client.waitOperation(operation.id);
if (operation.status == 'Success') {
  print('Instance ${operation.instanceNames.first} created.');
} else {
  print('Failed: ${operation.error}');
}

client.close();

Contributing to lxd.dart #

We welcome contributions! See the contribution guide for more details.

8
likes
0
pub points
15%
popularity

Publisher

verified publishercanonical.com

Provides a client to access lxd, which allows you to manage containers on a Linux system.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

http

More

Packages that depend on lxd