Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mschout/dist-zilla-plugin-docker
Dist::Zilla Plugin to Push Release Images to a Docker Repository
https://github.com/mschout/dist-zilla-plugin-docker
Last synced: about 1 month ago
JSON representation
Dist::Zilla Plugin to Push Release Images to a Docker Repository
- Host: GitHub
- URL: https://github.com/mschout/dist-zilla-plugin-docker
- Owner: mschout
- Created: 2021-08-31T20:56:46.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2021-09-03T16:03:03.000Z (over 3 years ago)
- Last Synced: 2023-08-20T22:15:28.311Z (over 1 year ago)
- Language: Perl
- Size: 28.3 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Changelog: Changes
Awesome Lists containing this project
README
# NAME
Dist::Zilla::Plugin::Docker - Build docker image and upload to a docker repository
# VERSION
version 0.02
# SYNOPSIS
# in dist.ini
[Docker]
image_name = foobar/my-image-name# PARAMETERS
## dockerfile
The name of the dockerfile used to build the image. Default is `Dockerfile`.
## image\_name
The name of the docker image. For docker hub, this will be something like `username/my-image`
## tag\_format
The format string for the image tag. Default is `v%V`.
## push\_image
If true, runs `docker push` at the end to push the image to the upstream repository. Default is `true`.
## time\_zone
If using a date string in the [tag\_format](https://metacpan.org/pod/tag_format), the time zone used for computing the
current date. Default is `local`.# SOURCE
The development version is on github at [https://https://github.com/mschout/dist-zilla-plugin-docker](https://https://github.com/mschout/dist-zilla-plugin-docker)
and may be cloned from [git://https://github.com/mschout/dist-zilla-plugin-docker.git](git://https://github.com/mschout/dist-zilla-plugin-docker.git)# BUGS
Please report any bugs or feature requests on the bugtracker website
[https://github.com/mschout/dist-zilla-plugin-docker/issues](https://github.com/mschout/dist-zilla-plugin-docker/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.# AUTHOR
Michael Schout
# COPYRIGHT AND LICENSE
This software is copyright (c) 2021 by Michael Schout.
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.