Package com.spotify.docker.client.messages

Examples of com.spotify.docker.client.messages.Info


        .setCreatingUser(TEST_USER)
        .build();

    try (final DockerClient docker = getNewDockerClient()) {
      // Only run this test if limits are actually supported
      final Info info = docker.info();
      assumeTrue(info.memoryLimit());
      assumeTrue(info.swapLimit());
    }
  }
View Full Code Here

TOP

Related Classes of com.spotify.docker.client.messages.Info

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.