10 releases
0.2.3 | Jul 5, 2022 |
---|---|
0.2.2 | Jun 5, 2022 |
0.2.0 | May 22, 2022 |
0.1.5 | Feb 6, 2022 |
0.1.0 | Nov 21, 2021 |
#29 in #docker-image
34KB
667 lines
Depploy
About
Depploy is a cli tool that makes it easy to create docker images, for every programming language. Simply specify the name and the version in your application config, and depploy will take care of build and pushing to the docker hub or your private registry.
Installation
cargo install depploy
Usage (command: Run)
Depploy is pretty simple, type:
depploy run
and depploy searches in the current directory for a (any file extionsion like yml, toml, yaml, ini):
- conf
- config
- Cargo
the config needs to contain following keys:
- name
- version
more configuration file are coming.
Usage (command: generate)
This command uses the specified path and index all file extionsion with that are not ignore via the ".gitignore". If the programming language is currently supported by depploy, it will create a dockerfile in the root of your folder.
depploy generate
Language not supported?
You are welcome to submit a pull request to the dockerfile branch to add your basic instruction file to depploy.
Specifying Private Registry:
Depploy pushes without any configuration to the docker hub, if you want to change this then you need to create following configuration file:
nano "~/.depploy/settings.toml
the content should be look like the "example_settings.toml".
Todo
these are the features that should be added in the near future.
- Improved status and exit messages
- Better docker deamon handling
- Generate subcommands like list files, add files (custom or create pull request).
Changelog
0.2.0
- Added generate command.
- Improved error handling for run command.
- moved depploy dir into home directory of user.
0.1.0
- inital release with run command.
Dependencies
~23–39MB
~705K SLoC