The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Docker::CLI::Wrapper::Container - manage a container.

VERSION

version 0.0.7

SYNOPSIS

    use Docker::CLI::Wrapper::Container ();

    my $obj = Docker::CLI::Wrapper::Container->new(
        {
            container => "my-docker-container",
            sys => 'debian:sid',
        }
    );
    $obj->clean_up();
    $obj->run_docker();
    $obj->exe_bash_code(
        {
            code => qq#set -e -x; printf "%s\\n" "Hello world!"# ,
        }
    );
    $obj->clean_up();

METHODS

$obj->sys()

The desired operating system / docker image to use for the container. A string.

$obj->container()

The container name / ID.

A string.

$obj->run_docker()

Get the container to run (after pulling its system).

[Added in version 0.0.3.]

$obj->clean_up()

Stops and deletes the container.

$obj->exe({ cmd => [@CMD], })

"docker exec"s the @CMD on the container: one can specify an optional 'user' username.

[Added in version 0.0.4.]

$obj->exe_bash_code({code => $CODE})

Runs $CODE using 'bash -c' inside the container.

[Added in version 0.0.4.]

$obj->do_system({ cmd => [@CMD]});

Sugar for system(@CMD) - prints and dies on error.

$obj->docker({ cmd => [@CMD]});

Runs docker using the args in @CMD, using do_system.

$obj->calc_docker_cmd_line_prefix()

Calculates the prefix for running docker at the attributes' init time.

SUPPORT

Websites

The following websites have more information about this module, and may be of help to you. As always, in addition to those websites please use your favorite search engine to discover more resources.

Bugs / Feature Requests

Please report any bugs or feature requests by email to bug-docker-cli-wrapper at rt.cpan.org, or through the web interface at https://rt.cpan.org/Public/Bug/Report.html?Queue=Docker-CLI-Wrapper. You will be automatically notified of any progress on the request by the system.

Source Code

The code is open to the world, and available for you to hack on. Please feel free to browse it and play with it, or whatever. If you want to contribute patches, please send me a diff or prod me to pull from your repository :)

https://github.com/shlomif/Docker-CLI-Wrapper

  git clone https://github.com/shlomif/Docker-CLI-Wrapper.git

AUTHOR

Shlomi Fish <shlomif@cpan.org>

BUGS

Please report any bugs or feature requests on the bugtracker website https://github.com/shlomif/Docker-CLI-Wrapper/issues

When submitting a bug or request, please include a test-file or a patch to an existing test-file that illustrates the bug or desired feature.

COPYRIGHT AND LICENSE

This software is Copyright (c) 2020 by Shlomi Fish.

This is free software, licensed under:

  The MIT (X11) License