Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/y-matsuwitter/docker-assembler
Docker image assemble kit
https://github.com/y-matsuwitter/docker-assembler
Last synced: 18 days ago
JSON representation
Docker image assemble kit
- Host: GitHub
- URL: https://github.com/y-matsuwitter/docker-assembler
- Owner: y-matsuwitter
- Created: 2014-07-02T23:36:46.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2014-07-05T16:27:58.000Z (over 10 years ago)
- Last Synced: 2023-03-23T00:57:00.698Z (almost 2 years ago)
- Language: Go
- Size: 130 KB
- Stars: 10
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
docker-assembler
====docker-assembler is a tool for combine multiple Dockerfiles.
## Quickstart
### Create your project```
$ docker-assembler create
```### Add your sub Dockerfiles
```
$ cd
$ docker-assembler add
```This adds sub Dockerfiles in a directory you specified.
### Build Docker image with sub Dockerfiles
```
$ cd
$ docker-assembler build ...
```This will build docker image with dockerfiles you specified.
## Usage
```
$ docker-assembler help [git master]
NAME:
docker-assembler - Docker image builder with sub-DockerfilesUSAGE:
docker-assembler [global options] command [command options] [arguments...]VERSION:
0.1.0COMMANDS:
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 commandGLOBAL 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)