All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.bmuschko.gradle.docker.tasks.image.DockerCommitImage.groovy Maven / Gradle / Ivy

There is a newer version: 6.7.0
Show newest version
/*
 * Copyright 2014 the original author or authors.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package com.bmuschko.gradle.docker.tasks.image

import com.bmuschko.gradle.docker.tasks.container.DockerExistingContainer
import org.gradle.api.provider.Property
import org.gradle.api.tasks.Input
import org.gradle.api.tasks.Internal
import org.gradle.api.tasks.Optional

class DockerCommitImage extends DockerExistingContainer {
    /**
     * Repository.
     */
    @Input
    @Optional
    final Property repository = project.objects.property(String)

    /**
     * Commit tag.
     */
    @Input
    @Optional
    final Property tag = project.objects.property(String)

    /**
     * Commit message.
     */
    @Input
    @Optional
    final Property message = project.objects.property(String)

    /**
     * Author of image e.g. Benjamin Muschko.
     */
    @Input
    @Optional
    final Property author = project.objects.property(String)

    @Input
    @Optional
    final Property pause = project.objects.property(Boolean)

    @Input
    @Optional
    final Property attachStderr = project.objects.property(Boolean)

    @Input
    @Optional
    final Property attachStdin = project.objects.property(Boolean)

    @Internal
    final Property imageId = project.objects.property(String)

    @Override
    void runRemoteCommand(dockerClient) {
        logger.quiet "Committing image for container '${getContainerId().get()}'."
        def commitCmd = dockerClient.commitCmd(getContainerId().get())

        if(repository.getOrNull()) {
            commitCmd.withRepository(repository.get())
        }

        if(tag.getOrNull()) {
            commitCmd.withTag(tag.get())
        }

        if(message.getOrNull()) {
            commitCmd.withMessage(message.get())
        }

        if(author.getOrNull()) {
            commitCmd.withAuthor(author.get())
        }

        if(pause.getOrNull()) {
            commitCmd.withPause(pause.get())
        }

        if(attachStderr.getOrNull()) {
            commitCmd.withAttachStderr(attachStderr.get())
        }

        if(attachStdin.getOrNull()) {
            commitCmd.withAttachStdin(attachStdin.get())
        }

        String createdImageId = commitCmd.exec()
        imageId.set(createdImageId)
        logger.quiet "Created image with ID '$createdImageId'."
        if(nextHandler) {
            nextHandler.execute(createdImageId)
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy