1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437
//! Image API: creating, manipulating and pushing docker images
use futures_core::Stream;
#[cfg(feature = "buildkit")]
use futures_util::future::{Either, FutureExt};
use futures_util::{stream, stream::StreamExt};
use http::header::CONTENT_TYPE;
use http::request::Builder;
use hyper::{body::Bytes, Body, Method};
use serde::Serialize;
use serde_repr::*;
use super::Docker;
use crate::auth::{base64_url_encode, DockerCredentials};
use crate::container::Config;
use crate::errors::Error;
use crate::models::*;
use std::cmp::Eq;
use std::collections::HashMap;
use std::hash::Hash;
/// Parameters available for pulling an image, used in the [Create Image
/// API](Docker::create_image)
///
/// ## Examples
///
/// ```rust
/// use bollard::image::CreateImageOptions;
///
/// use std::default::Default;
///
/// CreateImageOptions{
/// from_image: "hello-world",
/// ..Default::default()
/// };
/// ```
///
/// ```rust
/// # use bollard::image::CreateImageOptions;
/// # use std::default::Default;
/// CreateImageOptions::<String>{
/// ..Default::default()
/// };
/// ```
#[derive(Debug, Clone, Default, PartialEq, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct CreateImageOptions<T>
where
T: Into<String> + Serialize,
{
/// Name of the image to pull. The name may include a tag or digest. This parameter may only be
/// used when pulling an image. The pull is cancelled if the HTTP connection is closed.
pub from_image: T,
/// Source to import. The value may be a URL from which the image can be retrieved or `-` to
/// read the image from the request body. This parameter may only be used when importing an
/// image.
pub from_src: T,
/// Repository name given to an image when it is imported. The repo may include a tag. This
/// parameter may only be used when importing an image.
pub repo: T,
/// Tag or digest. If empty when pulling an image, this causes all tags for the given image to
/// be pulled.
pub tag: T,
/// Platform in the format `os[/arch[/variant]]`
pub platform: T,
}
/// Parameters to the [List Images
// API](Docker::list_images())
///
/// ## Examples
///
/// ```rust
/// use bollard::image::ListImagesOptions;
///
/// use std::collections::HashMap;
/// use std::default::Default;
///
/// let mut filters = HashMap::new();
/// filters.insert("dangling", vec!["true"]);
///
/// ListImagesOptions{
/// all: true,
/// filters,
/// ..Default::default()
/// };
/// ```
///
/// ```rust
/// # use bollard::image::ListImagesOptions;
/// # use std::default::Default;
/// ListImagesOptions::<String>{
/// ..Default::default()
/// };
/// ```
///
#[derive(Debug, Clone, Default, PartialEq, Serialize)]
pub struct ListImagesOptions<T>
where
T: Into<String> + Eq + Hash + Serialize,
{
/// Show all images. Only images from a final layer (no children) are shown by default.
pub all: bool,
/// A JSON encoded value of the filters to process on the images list. Available filters:
/// - `before`=(`<image-name>[:<tag>]`, `<image id>` or `<image@digest>`)
/// - `dangling`=`true`
/// - `label`=`key` or `label`=`"key=value"` of an image label
/// - `reference`=(`<image-name>[:<tag>]`)
/// - `since`=(`<image-name>[:<tag>]`, `<image id>` or `<image@digest>`)
#[serde(serialize_with = "crate::docker::serialize_as_json")]
pub filters: HashMap<T, Vec<T>>,
/// Show digest information as a RepoDigests field on each image.
pub digests: bool,
}
/// Parameters to the [Prune Images API](Docker::prune_images())
///
/// ## Examples
///
/// ```rust
/// use bollard::image::PruneImagesOptions;
///
/// use std::collections::HashMap;
///
/// let mut filters = HashMap::new();
/// filters.insert("until", vec!["10m"]);
///
/// PruneImagesOptions{
/// filters,
/// };
/// ```
///
/// ```rust
/// # use bollard::image::PruneImagesOptions;
/// # use std::default::Default;
/// PruneImagesOptions::<String>{
/// ..Default::default()
/// };
/// ```
///
#[derive(Debug, Clone, Default, PartialEq, Serialize)]
pub struct PruneImagesOptions<T>
where
T: Into<String> + Eq + Hash + Serialize,
{
/// Filters to process on the prune list, encoded as JSON. Available filters:
/// - `dangling=<boolean>` When set to `true` (or `1`), prune only unused *and* untagged
/// images. When set to `false` (or `0`), all unused images are pruned.
/// - `until=<string>` Prune images created before this timestamp. The `<timestamp>` can be
/// Unix timestamps, date formatted timestamps, or Go duration strings (e.g. `10m`, `1h30m`)
/// computed relative to the daemon machine’s time.
/// - `label` (`label=<key>`, `label=<key>=<value>`, `label!=<key>`, or
/// `label!=<key>=<value>`) Prune images with (or without, in case `label!=...` is used) the
/// specified labels.
#[serde(serialize_with = "crate::docker::serialize_as_json")]
pub filters: HashMap<T, Vec<T>>,
}
/// Parameters to the [Search Images API](Docker::search_images())
///
/// ## Example
///
/// ```rust
/// use bollard::image::SearchImagesOptions;
/// use std::default::Default;
/// use std::collections::HashMap;
///
/// let mut filters = HashMap::new();
/// filters.insert("until", vec!["10m"]);
///
/// SearchImagesOptions {
/// term: "hello-world",
/// filters,
/// ..Default::default()
/// };
/// ```
///
/// ```rust
/// # use bollard::image::SearchImagesOptions;
/// # use std::default::Default;
/// SearchImagesOptions::<String> {
/// ..Default::default()
/// };
/// ```
#[derive(Debug, Clone, Default, PartialEq, Serialize)]
pub struct SearchImagesOptions<T>
where
T: Into<String> + Eq + Hash + Serialize,
{
/// Term to search (required)
pub term: T,
/// Maximum number of results to return
pub limit: Option<u64>,
/// A JSON encoded value of the filters to process on the images list. Available filters:
/// - `is-automated=(true|false)`
/// - `is-official=(true|false)`
/// - `stars=<number>` Matches images that has at least 'number' stars.
#[serde(serialize_with = "crate::docker::serialize_as_json")]
pub filters: HashMap<T, Vec<T>>,
}
/// Parameters to the [Remove Image API](Docker::remove_image())
///
/// ## Examples
///
/// ```rust
/// use bollard::image::RemoveImageOptions;
/// use std::default::Default;
///
/// RemoveImageOptions {
/// force: true,
/// ..Default::default()
/// };
/// ```
#[derive(Debug, Copy, Clone, Default, PartialEq, Serialize)]
pub struct RemoveImageOptions {
/// Remove the image even if it is being used by stopped containers or has other tags.
pub force: bool,
/// Do not delete untagged parent images.
pub noprune: bool,
}
/// Parameters to the [Tag Image API](Docker::tag_image())
///
/// ## Examples
///
/// ```rust
/// use bollard::image::TagImageOptions;
/// use std::default::Default;
///
/// let tag_options = TagImageOptions {
/// tag: "v1.0.1",
/// ..Default::default()
/// };
/// ```
///
/// ```rust
/// # use bollard::image::TagImageOptions;
/// # use std::default::Default;
/// let tag_options = TagImageOptions::<String> {
/// ..Default::default()
/// };
/// ```
#[derive(Debug, Clone, Default, PartialEq, Serialize)]
pub struct TagImageOptions<T>
where
T: Into<String> + Serialize,
{
/// The repository to tag in. For example, `someuser/someimage`.
pub repo: T,
/// The name of the new tag.
pub tag: T,
}
/// Parameters to the [Push Image API](Docker::push_image())
///
/// ## Examples
///
/// ```rust
/// use bollard::image::PushImageOptions;
///
/// PushImageOptions {
/// tag: "v1.0.1",
/// };
/// ```
///
/// ```
/// # use bollard::image::PushImageOptions;
/// # use std::default::Default;
/// PushImageOptions::<String> {
/// ..Default::default()
/// };
/// ```
#[derive(Debug, Clone, Default, PartialEq, Serialize)]
pub struct PushImageOptions<T>
where
T: Into<String> + Serialize,
{
/// The tag to associate with the image on the registry.
pub tag: T,
}
/// Parameters to the [Commit Container API](Docker::commit_container())
///
/// ## Examples
///
/// ```rust
/// use bollard::image::CommitContainerOptions;
///
/// CommitContainerOptions {
/// container: "my-running-container",
/// pause: true,
/// ..Default::default()
/// };
/// ```
///
/// ```
/// # use bollard::image::CommitContainerOptions;
/// # use std::default::Default;
/// CommitContainerOptions::<String> {
/// ..Default::default()
/// };
/// ```
#[derive(Debug, Clone, Default, PartialEq, Serialize)]
pub struct CommitContainerOptions<T>
where
T: Into<String> + Serialize,
{
/// The ID or name of the container to commit.
pub container: T,
/// Repository name for the created image.
pub repo: T,
/// Tag name for the create image.
pub tag: T,
/// Commit message.
pub comment: T,
/// Author of the image.
pub author: T,
/// Whether to pause the container before committing.
pub pause: bool,
/// `Dockerfile` instructions to apply while committing
pub changes: Option<T>,
}
/// Parameters to the [Build Image API](Docker::build_image())
///
/// ## Examples
///
/// ```rust
/// use bollard::image::BuildImageOptions;
///
/// BuildImageOptions {
/// dockerfile: "Dockerfile",
/// t: "my-image",
/// ..Default::default()
/// };
/// ```
///
/// ```
/// # use bollard::image::BuildImageOptions;
/// # use std::default::Default;
/// BuildImageOptions::<String> {
/// ..Default::default()
/// };
/// ```
#[derive(Debug, Clone, Default, PartialEq, Serialize)]
pub struct BuildImageOptions<T>
where
T: Into<String> + Eq + Hash + Serialize,
{
/// Path within the build context to the `Dockerfile`. This is ignored if `remote` is specified and
/// points to an external `Dockerfile`.
pub dockerfile: T,
/// A name and optional tag to apply to the image in the `name:tag` format. If you omit the tag
/// the default `latest` value is assumed. You can provide several `t` parameters.
pub t: T,
/// Extra hosts to add to `/etc/hosts`.
pub extrahosts: Option<T>,
/// A Git repository URI or HTTP/HTTPS context URI. If the URI points to a single text file,
/// the file’s contents are placed into a file called `Dockerfile` and the image is built from
/// that file. If the URI points to a tarball, the file is downloaded by the daemon and the
/// contents therein used as the context for the build. If the URI points to a tarball and the
/// `dockerfile` parameter is also specified, there must be a file with the corresponding path
/// inside the tarball.
pub remote: T,
/// Suppress verbose build output.
pub q: bool,
/// Do not use the cache when building the image.
pub nocache: bool,
/// JSON array of images used for build cache resolution.
#[serde(serialize_with = "crate::docker::serialize_as_json")]
pub cachefrom: Vec<T>,
/// Attempt to pull the image even if an older image exists locally.
pub pull: bool,
/// Remove intermediate containers after a successful build.
pub rm: bool,
/// Always remove intermediate containers, even upon failure.
pub forcerm: bool,
/// Set memory limit for build.
pub memory: Option<u64>,
/// Total memory (memory + swap). Set as `-1` to disable swap.
pub memswap: Option<i64>,
/// CPU shares (relative weight).
pub cpushares: Option<u64>,
/// CPUs in which to allow execution (e.g., `0-3`, `0,1`).
pub cpusetcpus: T,
/// The length of a CPU period in microseconds.
pub cpuperiod: Option<u64>,
/// Microseconds of CPU time that the container can get in a CPU period.
pub cpuquota: Option<u64>,
/// JSON map of string pairs for build-time variables. Users pass these values at build-time.
/// Docker uses the buildargs as the environment context for commands run via the `Dockerfile`
/// RUN instruction, or for variable expansion in other `Dockerfile` instructions.
#[serde(serialize_with = "crate::docker::serialize_as_json")]
pub buildargs: HashMap<T, T>,
#[cfg(feature = "buildkit")]
/// Session ID
pub session: Option<String>,
/// Size of `/dev/shm` in bytes. The size must be greater than 0. If omitted the system uses 64MB.
pub shmsize: Option<u64>,
/// Squash the resulting images layers into a single layer.
pub squash: bool,
/// Arbitrary key/value labels to set on the image, as a JSON map of string pairs.
#[serde(serialize_with = "crate::docker::serialize_as_json")]
pub labels: HashMap<T, T>,
/// Sets the networking mode for the run commands during build. Supported standard values are:
/// `bridge`, `host`, `none`, and `container:<name|id>`. Any other value is taken as a custom network's
/// name to which this container should connect to.
pub networkmode: T,
/// Platform in the format `os[/arch[/variant]]`
pub platform: T,
/// Builder version to use
pub version: BuilderVersion,
}
/// Builder Version to use
#[derive(Clone, Copy, Debug, PartialEq, Serialize_repr)]
#[repr(u8)]
pub enum BuilderVersion {
/// BuilderV1 is the first generation builder in docker daemon
BuilderV1 = 1,
/// BuilderBuildKit is builder based on moby/buildkit project
BuilderBuildKit = 2,
}
impl Default for BuilderVersion {
fn default() -> Self {
BuilderVersion::BuilderV1
}
}
/// Parameters to the [Import Image API](Docker::import_image())
///
/// ## Examples
///
/// ```rust
/// use bollard::image::ImportImageOptions;
/// use std::default::Default;
///
/// ImportImageOptions {
/// quiet: true,
/// ..Default::default()
/// };
/// ```
#[derive(Debug, Copy, Clone, Default, PartialEq, Serialize)]
pub struct ImportImageOptions {
/// Suppress progress details during load.
pub quiet: bool,
}
impl Docker {
/// ---
///
/// # List Images
///
/// Returns a list of images on the server. Note that it uses a different, smaller
/// representation of an image than inspecting a single image
///
/// # Arguments
///
/// - An optional [List Images Options](ListImagesOptions) struct.
///
/// # Returns
///
/// - Vector of [API Images](ImageSummary), wrapped in a Future.
///
/// # Examples
///
/// ```rust,no_run
/// # use bollard::Docker;
/// # let docker = Docker::connect_with_http_defaults().unwrap();
/// use bollard::image::ListImagesOptions;
///
/// use std::collections::HashMap;
/// use std::default::Default;
///
/// let mut filters = HashMap::new();
/// filters.insert("dangling", vec!["true"]);
///
/// let options = Some(ListImagesOptions{
/// all: true,
/// filters,
/// ..Default::default()
/// });
///
/// docker.list_images(options);
/// ```
pub async fn list_images<T>(
&self,
options: Option<ListImagesOptions<T>>,
) -> Result<Vec<ImageSummary>, Error>
where
T: Into<String> + Eq + Hash + Serialize,
{
let url = "/images/json";
let req = self.build_request(
url,
Builder::new().method(Method::GET),
options,
Ok(Body::empty()),
);
self.process_into_value(req).await
}
/// ---
///
/// # Create Image
///
/// Create an image by either pulling it from a registry or importing it.
///
/// # Arguments
///
/// - An optional [Create Image Options](CreateImageOptions) struct.
/// - An optional request body consisting of a tar or tar.gz archive with the root file system
/// for the image. If this argument is used, the value of the `from_src` option must be "-".
///
/// # Returns
///
/// - [Create Image Info](CreateImageInfo), wrapped in an asynchronous
/// Stream.
///
/// # Examples
///
/// ```rust
/// # use bollard::Docker;
/// # let docker = Docker::connect_with_http_defaults().unwrap();
/// use bollard::image::CreateImageOptions;
///
/// use std::default::Default;
///
/// let options = Some(CreateImageOptions{
/// from_image: "hello-world",
/// ..Default::default()
/// });
///
/// docker.create_image(options, None, None);
///
/// // do some other work while the image is pulled from the docker hub...
/// ```
///
/// # Unsupported
///
/// - Import from tarball
///
pub fn create_image<T>(
&self,
options: Option<CreateImageOptions<T>>,
root_fs: Option<Body>,
credentials: Option<DockerCredentials>,
) -> impl Stream<Item = Result<CreateImageInfo, Error>>
where
T: Into<String> + Serialize,
{
let url = "/images/create";
match serde_json::to_string(&credentials.unwrap_or_else(|| DockerCredentials {
..Default::default()
})) {
Ok(ser_cred) => {
let req = self.build_request(
url,
Builder::new()
.method(Method::POST)
.header("X-Registry-Auth", base64_url_encode(&ser_cred)),
options,
match root_fs {
Some(body) => Ok(body),
None => Ok(Body::empty()),
},
);
self.process_into_stream(req).boxed()
}
Err(e) => stream::once(async move { Err(Error::from(e)) }).boxed(),
}
.map(|res| {
if let Ok(CreateImageInfo {
error: Some(error), ..
}) = res
{
Err(Error::DockerStreamError { error })
} else {
res
}
})
}
/// ---
///
/// # Inspect Image
///
/// Return low-level information about an image.
///
/// # Arguments
///
/// - Image name as a string slice.
///
/// # Returns
///
/// - [ImageInspect](ImageInspect), wrapped in a Future.
///
/// # Examples
///
/// ```rust
/// # use bollard::Docker;
/// # let docker = Docker::connect_with_http_defaults().unwrap();
///
/// use std::default::Default;
///
/// docker.inspect_image("hello-world");
/// ```
pub async fn inspect_image(&self, image_name: &str) -> Result<ImageInspect, Error> {
let url = format!("/images/{}/json", image_name);
let req = self.build_request(
&url,
Builder::new().method(Method::GET),
None::<String>,
Ok(Body::empty()),
);
self.process_into_value(req).await
}
/// ---
///
/// # Prune Images
///
/// Delete unused images.
///
/// # Arguments
///
/// - An optional [Prune Images Options](PruneImagesOptions) struct.
///
/// # Returns
///
/// - a [Prune Image Response](ImagePruneResponse), wrapped in a Future.
///
/// # Examples
///
/// ```rust
/// # use bollard::Docker;
/// # let docker = Docker::connect_with_http_defaults().unwrap();
/// use bollard::image::PruneImagesOptions;
///
/// use std::collections::HashMap;
///
/// let mut filters = HashMap::new();
/// filters.insert("until", vec!["10m"]);
///
/// let options = Some(PruneImagesOptions {
/// filters
/// });
///
/// docker.prune_images(options);
/// ```
pub async fn prune_images<T>(
&self,
options: Option<PruneImagesOptions<T>>,
) -> Result<ImagePruneResponse, Error>
where
T: Into<String> + Eq + Hash + Serialize,
{
let url = "/images/prune";
let req = self.build_request(
url,
Builder::new().method(Method::POST),
options,
Ok(Body::empty()),
);
self.process_into_value(req).await
}
/// ---
///
/// # Image History
///
/// Return parent layers of an image.
///
/// # Arguments
///
/// - Image name as a string slice.
///
/// # Returns
///
/// - Vector of [History Response Item](HistoryResponseItem), wrapped in a
/// Future.
///
/// # Examples
///
/// ```rust
/// # use bollard::Docker;
/// # let docker = Docker::connect_with_http_defaults().unwrap();
///
/// docker.image_history("hello-world");
/// ```
pub async fn image_history(&self, image_name: &str) -> Result<Vec<HistoryResponseItem>, Error> {
let url = format!("/images/{}/history", image_name);
let req = self.build_request(
&url,
Builder::new().method(Method::GET),
None::<String>,
Ok(Body::empty()),
);
self.process_into_value(req).await
}
/// ---
///
/// # Search Images
///
/// Search for an image on Docker Hub.
///
/// # Arguments
///
/// - [Search Image Options](SearchImagesOptions) struct.
///
/// # Returns
///
/// - Vector of [Image Search Response Item](ImageSearchResponseItem) results, wrapped in a
/// Future.
///
/// # Examples
///
/// ```rust
/// # use bollard::Docker;
///
/// use bollard::image::SearchImagesOptions;
/// use std::default::Default;
/// use std::collections::HashMap;
///
/// let mut filters = HashMap::new();
/// filters.insert("until", vec!["10m"]);
///
/// # let docker = Docker::connect_with_http_defaults().unwrap();
/// let search_options = SearchImagesOptions {
/// term: "hello-world",
/// filters,
/// ..Default::default()
/// };
///
/// docker.search_images(search_options);
/// ```
pub async fn search_images<T>(
&self,
options: SearchImagesOptions<T>,
) -> Result<Vec<ImageSearchResponseItem>, Error>
where
T: Into<String> + Eq + Hash + Serialize,
{
let url = "/images/search";
let req = self.build_request(
url,
Builder::new().method(Method::GET),
Some(options),
Ok(Body::empty()),
);
self.process_into_value(req).await
}
/// ---
///
/// # Remove Image
///
/// Remove an image, along with any untagged parent images that were referenced by that image.
///
/// # Arguments
///
/// - Image name as a string slice.
/// - An optional [Remove Image Options](RemoveImageOptions) struct.
///
/// # Returns
///
/// - Vector of [Image Delete Response Item](ImageDeleteResponseItem), wrapped in a
/// Future.
///
/// # Examples
///
/// ```rust
/// # use bollard::Docker;
///
/// use bollard::image::RemoveImageOptions;
/// use std::default::Default;
///
/// # let docker = Docker::connect_with_http_defaults().unwrap();
/// let remove_options = Some(RemoveImageOptions {
/// force: true,
/// ..Default::default()
/// });
///
/// docker.remove_image("hello-world", remove_options, None);
/// ```
pub async fn remove_image(
&self,
image_name: &str,
options: Option<RemoveImageOptions>,
credentials: Option<DockerCredentials>,
) -> Result<Vec<ImageDeleteResponseItem>, Error> {
let url = format!("/images/{}", image_name);
match serde_json::to_string(&credentials.unwrap_or_else(|| DockerCredentials {
..Default::default()
})) {
Ok(ser_cred) => {
let req = self.build_request(
&url,
Builder::new()
.method(Method::DELETE)
.header("X-Registry-Auth", base64_url_encode(&ser_cred)),
options,
Ok(Body::empty()),
);
self.process_into_value(req).await
}
Err(e) => Err(e.into()),
}
}
/// ---
///
/// # Tag Image
///
/// Tag an image so that it becomes part of a repository.
///
/// # Arguments
///
/// - Image name as a string slice.
/// - Optional [Tag Image Options](TagImageOptions) struct.
///
/// # Returns
///
/// - unit type `()`, wrapped in a Future.
///
/// # Examples
///
/// ```rust
/// # use bollard::Docker;
///
/// use bollard::image::TagImageOptions;
/// use std::default::Default;
///
/// # let docker = Docker::connect_with_http_defaults().unwrap();
/// let tag_options = Some(TagImageOptions {
/// tag: "v1.0.1",
/// ..Default::default()
/// });
///
/// docker.tag_image("hello-world", tag_options);
/// ```
pub async fn tag_image<T>(
&self,
image_name: &str,
options: Option<TagImageOptions<T>>,
) -> Result<(), Error>
where
T: Into<String> + Serialize,
{
let url = format!("/images/{}/tag", image_name);
let req = self.build_request(
&url,
Builder::new().method(Method::POST),
options,
Ok(Body::empty()),
);
self.process_into_unit(req).await
}
/// ---
///
/// # Push Image
///
/// Push an image to a registry.
///
/// # Arguments
///
/// - Image name as a string slice.
/// - Optional [Push Image Options](PushImageOptions) struct.
/// - Optional [Docker Credentials](DockerCredentials) struct.
///
/// # Returns
///
/// - unit type `()`, wrapped in a Future.
///
/// # Examples
///
/// ```rust
/// # use bollard::Docker;
///
/// use bollard::auth::DockerCredentials;
/// use bollard::image::PushImageOptions;
///
/// use std::default::Default;
///
/// # let docker = Docker::connect_with_http_defaults().unwrap();
/// let push_options = Some(PushImageOptions {
/// tag: "v1.0.1",
/// });
///
/// let credentials = Some(DockerCredentials {
/// username: Some("Jack".to_string()),
/// password: Some("myverysecretpassword".to_string()),
/// ..Default::default()
/// });
///
/// docker.push_image("hello-world", push_options, credentials);
/// ```
pub fn push_image<T>(
&self,
image_name: &str,
options: Option<PushImageOptions<T>>,
credentials: Option<DockerCredentials>,
) -> impl Stream<Item = Result<PushImageInfo, Error>>
where
T: Into<String> + Serialize,
{
let url = format!("/images/{}/push", image_name);
match serde_json::to_string(&credentials.unwrap_or_else(|| DockerCredentials {
..Default::default()
})) {
Ok(ser_cred) => {
let req = self.build_request(
&url,
Builder::new()
.method(Method::POST)
.header(CONTENT_TYPE, "application/json")
.header("X-Registry-Auth", base64_url_encode(&ser_cred)),
options,
Ok(Body::empty()),
);
self.process_into_stream(req).boxed()
}
Err(e) => stream::once(async move { Err(e.into()) }).boxed(),
}
.map(|res| {
if let Ok(PushImageInfo {
error: Some(error), ..
}) = res
{
Err(Error::DockerStreamError { error })
} else {
res
}
})
}
/// ---
///
/// # Commit Container
///
/// Create a new image from a container.
///
/// # Arguments
///
/// - [Commit Container Options](CommitContainerOptions) struct.
/// - Container [Config](Config) struct.
///
/// # Returns
///
/// - [Commit](Commit), wrapped in a Future.
///
/// # Examples
///
/// ```rust
/// # use bollard::Docker;
/// # let docker = Docker::connect_with_http_defaults().unwrap();
/// use bollard::image::CommitContainerOptions;
/// use bollard::container::Config;
///
/// use std::default::Default;
///
/// let options = CommitContainerOptions{
/// container: "my-running-container",
/// pause: true,
/// ..Default::default()
/// };
///
/// let config = Config::<String> {
/// ..Default::default()
/// };
///
/// docker.commit_container(options, config);
/// ```
pub async fn commit_container<T, Z>(
&self,
options: CommitContainerOptions<T>,
config: Config<Z>,
) -> Result<Commit, Error>
where
T: Into<String> + Serialize,
Z: Into<String> + Eq + Hash + Serialize,
{
let url = "/commit";
let req = self.build_request(
url,
Builder::new().method(Method::POST),
Some(options),
Docker::serialize_payload(Some(config)),
);
self.process_into_value(req).await
}
/// ---
///
/// # Build Image
///
/// Build an image from a tar archive with a `Dockerfile` in it.
///
/// The `Dockerfile` specifies how the image is built from the tar archive. It is typically in
/// the archive's root, but can be at a different path or have a different name by specifying
/// the `dockerfile` parameter.
///
/// By default, the call to build specifies using BuilderV1, the first generation builder in docker daemon.
///
/// # Arguments
///
/// - [Build Image Options](BuildImageOptions) struct.
/// - Optional [Docker Credentials](DockerCredentials) struct.
/// - Tar archive compressed with one of the following algorithms: identity (no compression),
/// gzip, bzip2, xz. Optional [Hyper Body](hyper::body::Body).
///
/// # Returns
///
/// - [Create Image Info](CreateImageInfo), wrapped in an asynchronous
/// Stream.
///
/// # Examples
///
/// ```rust,no_run
/// # use bollard::Docker;
/// # let docker = Docker::connect_with_http_defaults().unwrap();
/// use bollard::image::BuildImageOptions;
/// use bollard::container::Config;
///
/// use std::default::Default;
/// use std::fs::File;
/// use std::io::Read;
///
/// let options = BuildImageOptions{
/// dockerfile: "Dockerfile",
/// t: "my-image",
/// rm: true,
/// ..Default::default()
/// };
///
/// let mut file = File::open("tarball.tar.gz").unwrap();
/// let mut contents = Vec::new();
/// file.read_to_end(&mut contents).unwrap();
///
/// docker.build_image(options, None, Some(contents.into()));
/// ```
pub fn build_image<T>(
&self,
options: BuildImageOptions<T>,
credentials: Option<HashMap<String, DockerCredentials>>,
tar: Option<Body>,
) -> impl Stream<Item = Result<BuildInfo, Error>> + '_
where
T: Into<String> + Eq + Hash + Serialize,
{
let url = "/build";
match (
serde_json::to_string(&credentials.unwrap_or_default()),
&options,
) {
#[cfg(feature = "buildkit")]
(
Ok(ser_cred),
BuildImageOptions {
version: BuilderVersion::BuilderBuildKit,
session: Some(ref sess),
..
},
) => {
let session_id = String::clone(sess);
let req = self.build_request(
url,
Builder::new()
.method(Method::POST)
.header(CONTENT_TYPE, "application/x-tar")
.header("X-Registry-Config", base64_url_encode(&ser_cred)),
Some(options),
Ok(tar.unwrap_or_else(Body::empty)),
);
let session = stream::once(
self.start_session(session_id)
.map(|_| Either::Right(()))
.fuse(),
);
let stream = self
.process_into_stream::<BuildInfo>(req)
.map(|data| Either::Left(data));
futures_util::stream::select(stream, session)
.filter_map(|either| async move {
match either {
Either::Left(data) => Some(data),
_ => None,
}
})
.boxed()
}
#[cfg(feature = "buildkit")]
(
Ok(_),
BuildImageOptions {
version: BuilderVersion::BuilderBuildKit,
session: None,
..
},
) => stream::once(futures_util::future::err(
Error::MissingSessionBuildkitError {},
))
.boxed(),
(Ok(ser_cred), _) => {
let req = self.build_request(
url,
Builder::new()
.method(Method::POST)
.header(CONTENT_TYPE, "application/x-tar")
.header("X-Registry-Config", base64_url_encode(&ser_cred)),
Some(options),
Ok(tar.unwrap_or_else(Body::empty)),
);
self.process_into_stream(req).boxed()
}
(Err(e), _) => stream::once(async move { Err(e.into()) }).boxed(),
}
.map(|res| {
if let Ok(BuildInfo {
error: Some(error), ..
}) = res
{
Err(Error::DockerStreamError { error })
} else {
res
}
})
}
#[cfg(feature = "buildkit")]
async fn start_session(&self, id: String) -> Result<(), Error> {
let url = "/session";
let opt: Option<serde_json::Value> = None;
let req = self.build_request(
&url,
Builder::new()
.method(Method::POST)
.header("Connection", "Upgrade")
.header("Upgrade", "h2c")
.header("X-Docker-Expose-Session-Uuid", &id),
opt,
Ok(Body::empty()),
);
let (read, write) = self.process_upgraded(req).await?;
let output = Box::pin(read);
let input = Box::pin(write);
let transport = crate::grpc::GrpcTransport {
read: output,
write: input,
};
let service =
crate::health::health_server::HealthServer::new(crate::grpc::HealthServerImpl::new());
Ok(tonic::transport::Server::builder()
.add_service(service)
.serve_with_incoming(stream::iter(vec![Ok::<_, tonic::transport::Error>(
transport,
)]))
.await?)
}
/// ---
///
/// # Export Image
///
/// Get a tarball containing all images and metadata for a repository.
///
/// The root of the resulting tar file will contain the file "mainifest.json". If the export is
/// of an image repository, rather than a signle image, there will also be a `repositories` file
/// with a JSON description of the exported image repositories.
/// Additionally, each layer of all exported images will have a sub directory in the archive
/// containing the filesystem of the layer.
///
/// See the [Docker API documentation](https://docs.docker.com/engine/api/v1.40/#operation/ImageCommit)
/// for more information.
/// # Arguments
/// - The `image_name` string can refer to an individual image and tag (e.g. alpine:latest),
/// an individual image by I
///
/// # Returns
/// - An uncompressed TAR archive
pub fn export_image(&self, image_name: &str) -> impl Stream<Item = Result<Bytes, Error>> {
let url = format!("/images/{}/get", image_name);
let req = self.build_request(
&url,
Builder::new()
.method(Method::GET)
.header(CONTENT_TYPE, "application/json"),
None::<String>,
Ok(Body::empty()),
);
self.process_into_body(req)
}
/// ---
///
/// # Import Image
///
/// Load a set of images and tags into a repository.
///
/// For details on the format, see the [export image
/// endpoint](struct.Docker.html#method.export_image).
///
/// # Arguments
/// - [Image Import Options](ImportImageOptions) struct.
///
/// # Returns
///
/// - [Build Info](BuildInfo), wrapped in an asynchronous
/// Stream.
///
/// # Examples
///
/// ```rust,no_run
/// # use bollard::Docker;
/// # let docker = Docker::connect_with_http_defaults().unwrap();
/// use bollard::image::ImportImageOptions;
/// use bollard::errors::Error;
///
/// use std::default::Default;
/// use futures_util::stream::StreamExt;
/// use tokio::fs::File;
/// use tokio::io::AsyncWriteExt;
/// use tokio_util::codec;
///
/// let options = ImportImageOptions{
/// ..Default::default()
/// };
///
/// async move {
/// let mut file = File::open("tarball.tar.gz").await.unwrap();
///
/// let byte_stream = codec::FramedRead::new(file, codec::BytesCodec::new()).map(|r| {
/// let bytes = r.unwrap().freeze();
/// Ok::<_, Error>(bytes)
/// });
/// let body = hyper::Body::wrap_stream(byte_stream);
/// let mut stream = docker
/// .import_image(
/// ImportImageOptions {
/// ..Default::default()
/// },
/// body,
/// None,
/// );
///
/// while let Some(response) = stream.next().await {
/// // ...
/// }
/// };
/// ```
pub fn import_image(
&self,
options: ImportImageOptions,
root_fs: Body,
credentials: Option<HashMap<String, DockerCredentials>>,
) -> impl Stream<Item = Result<BuildInfo, Error>> {
match serde_json::to_string(&credentials.unwrap_or_default()) {
Ok(ser_cred) => {
let req = self.build_request(
"/images/load",
Builder::new()
.method(Method::POST)
.header(CONTENT_TYPE, "application/json")
.header("X-Registry-Config", base64_url_encode(&ser_cred)),
Some(options),
Ok(root_fs),
);
self.process_into_stream(req).boxed()
}
Err(e) => stream::once(async move { Err(e.into()) }).boxed(),
}
.map(|res| {
if let Ok(BuildInfo {
error: Some(error), ..
}) = res
{
Err(Error::DockerStreamError { error })
} else {
res
}
})
}
}
#[cfg(test)]
mod tests {
#![cfg(not(target_arch = "windows"))]
use std::io::Write;
use futures_util::TryStreamExt;
use yup_hyper_mock::HostToReplyConnector;
use crate::{
image::{BuildImageOptions, PushImageOptions},
Docker, API_DEFAULT_VERSION,
};
use super::CreateImageOptions;
#[tokio::test]
async fn test_create_image_with_error() {
let mut connector = HostToReplyConnector::default();
connector.m.insert(
String::from("http://127.0.0.1"),
"HTTP/1.1 200 OK\r\nServer:mock1\r\nContent-Type:application/json\r\n\r\n{\"status\":\"Pulling from localstack/localstack\",\"id\":\"0.14.2\"}\n{\"errorDetail\":{\"message\":\"Get \\\"[https://registry-1.docker.io/v2/localstack/localstack/manifests/sha256:d7aefdaae6712891f13795f538fd855fe4e5a8722249e9ca965e94b69b83b819](https://registry-1.docker.io/v2/localstack/localstack/manifests/sha256:d7aefdaae6712891f13795f538fd855fe4e5a8722249e9ca965e94b69b83b819/)\\\": EOF\"},\"error\":\"Get \\\"[https://registry-1.docker.io/v2/localstack/localstack/manifests/sha256:d7aefdaae6712891f13795f538fd855fe4e5a8722249e9ca965e94b69b83b819](https://registry-1.docker.io/v2/localstack/localstack/manifests/sha256:d7aefdaae6712891f13795f538fd855fe4e5a8722249e9ca965e94b69b83b819/)\\\": EOF\"}".to_string());
let docker =
Docker::connect_with_mock(connector, "127.0.0.1".to_string(), 5, API_DEFAULT_VERSION)
.unwrap();
let image = String::from("localstack");
let result = &docker
.create_image(
Some(CreateImageOptions {
from_image: &image[..],
..Default::default()
}),
None,
None,
)
.try_collect::<Vec<_>>()
.await;
assert!(matches!(
result,
Err(crate::errors::Error::DockerStreamError { error: _ })
));
}
#[tokio::test]
async fn test_push_image_with_error() {
let mut connector = HostToReplyConnector::default();
connector.m.insert(
String::from("http://127.0.0.1"),
"HTTP/1.1 200 OK\r\nServer:mock1\r\nContent-Type:application/json\r\n\r\n{\"status\":\"The push refers to repository [localhost:5000/centos]\"}\n{\"status\":\"Preparing\",\"progressDetail\":{},\"id\":\"74ddd0ec08fa\"}\n{\"errorDetail\":{\"message\":\"EOF\"},\"error\":\"EOF\"}".to_string());
let docker =
Docker::connect_with_mock(connector, "127.0.0.1".to_string(), 5, API_DEFAULT_VERSION)
.unwrap();
let image = String::from("centos");
let result = docker
.push_image(&image[..], None::<PushImageOptions<String>>, None)
.try_collect::<Vec<_>>()
.await;
assert!(matches!(
result,
Err(crate::errors::Error::DockerStreamError { error: _ })
));
}
#[tokio::test]
async fn test_build_image_with_error() {
let mut connector = HostToReplyConnector::default();
connector.m.insert(
String::from("http://127.0.0.1"),
"HTTP/1.1 200 OK\r\nServer:mock1\r\nContent-Type:application/json\r\n\r\n{\"stream\":\"Step 1/2 : FROM alpine\"}\n{\"stream\":\"\n\"}\n{\"status\":\"Pulling from library/alpine\",\"id\":\"latest\"}\n{\"status\":\"Digest: sha256:bc41182d7ef5ffc53a40b044e725193bc10142a1243f395ee852a8d9730fc2ad\"}\n{\"status\":\"Status: Image is up to date for alpine:latest\"}\n{\"stream\":\" --- 9c6f07244728\\n\"}\n{\"stream\":\"Step 2/2 : RUN cmd.exe /C copy nul bollard.txt\"}\n{\"stream\":\"\\n\"}\n{\"stream\":\" --- Running in d615794caf91\\n\"}\n{\"stream\":\"/bin/sh: cmd.exe: not found\\n\"}\n{\"errorDetail\":{\"code\":127,\"message\":\"The command '/bin/sh -c cmd.exe /C copy nul bollard.txt' returned a non-zero code: 127\"},\"error\":\"The command '/bin/sh -c cmd.exe /C copy nul bollard.txt' returned a non-zero code: 127\"}".to_string());
let docker =
Docker::connect_with_mock(connector, "127.0.0.1".to_string(), 5, API_DEFAULT_VERSION)
.unwrap();
let dockerfile = String::from(
r#"FROM alpine
RUN cmd.exe /C copy nul bollard.txt"#,
);
let mut header = tar::Header::new_gnu();
header.set_path("Dockerfile").unwrap();
header.set_size(dockerfile.len() as u64);
header.set_mode(0o755);
header.set_cksum();
let mut tar = tar::Builder::new(Vec::new());
tar.append(&header, dockerfile.as_bytes()).unwrap();
let uncompressed = tar.into_inner().unwrap();
let mut c = flate2::write::GzEncoder::new(Vec::new(), flate2::Compression::default());
c.write_all(&uncompressed).unwrap();
let compressed = c.finish().unwrap();
let result = &docker
.build_image(
BuildImageOptions {
dockerfile: "Dockerfile".to_string(),
t: "integration_test_build_image".to_string(),
pull: true,
rm: true,
..Default::default()
},
None,
Some(compressed.into()),
)
.try_collect::<Vec<_>>()
.await;
assert!(matches!(
result,
Err(crate::errors::Error::DockerStreamError { error: _ })
));
}
}