KO
|
EN
gitlite โ search
Search
#javascript
#python
#hacktoberfest
#react
#ai
#typescript
#llm
#go
#golang
#android
#machine-learning
#rust
#deep-learning
#linux
docker-assembler
โ 10
Open GitHub โ
Docker image assemble kit
Download README (.md)
Explore Similar Repositories
autoupdate
:
Library autoupdate tool ๐ฐ
sortimports
:
sortimports - a command to sort import paths in Go files.
express_translate
:
I18n Translation Interface for end user in Rails app
BatchWriterService
:
A POC Batch Writer Service for scaling Neo4j Writes
haxepop
:
An enhanced fork of HaxePunk 2.6
// repository documentation
Was this content helpful?
โ 0
(0 ratings)
Select Rating:
โ
โ
โ
โ
โ
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
docker-assembler
?
Download (.md)
docker-assembler ==== docker-assembler is a tool for combine multiple Dockerfiles. ## Quickstart ### Create your project ``` $ docker-assembler create <your project name> ``` ### Add your sub Dockerfiles ``` $ cd <your project dir> $ docker-assembler add <sub dockerfile name> ``` This adds sub Dockerfiles in a directory you specified. ### Build Docker image with sub Dockerfiles ``` $ cd <your project dir> $ docker-assembler build <image name> <sub dockerfile names>... ``` This will build docker image with dockerfiles you specified. ## Usage ``` $ docker-assembler help [git master] NAME: docker-assembler - Docker image builder with sub-Dockerfiles USAGE: docker-assembler [global options] command [command options] [arguments...] VERSION: 0.1.0 COMMANDS: create Setup docker assembler project. add Add new sub-Dockerfile and its directory. build Build a Docker image with specified sub-Dockerfiles. help, h Shows a list of commands or help for one command GLOBAL OPTIONS: --version, -v print the version --help, -h show help ``` ## Sub Dockerfile `docker-assembler` builds each sub dockerfile in the directory of each sub dockerfile name. If you have your Dockerfiles with some additional files for `ADD`, you can put all files into sub directory of your project. ## Author [y-matsuwitter](http://github.com/y-matsuwitter)