Adds operating instructions

Signed-off-by: Eli Uriegas <eli.uriegas@docker.com>
Upstream-commit: a1a29c1440d5396d2a1be4e933472188554ad61f
Component: packaging
This commit is contained in:
Eli Uriegas
2017-06-20 14:12:18 -07:00
parent aa2281f8d3
commit 1314e42d84
2 changed files with 40 additions and 0 deletions

View File

@ -0,0 +1,20 @@
# Building your own Docker deb package
`.deb` packages can be built from this directory with the following syntax
```shell
make ENGINE_DIR=/path/to/engine CLI_DIR=/path/to/cli deb
```
If you want to specify a specific distro:
```shell
make ENGINE_DIR=/path/to/engine CLI_DIR=/path/to/cli ubuntu
```
If you want to specify a specific distro version:
```shell
make ENGINE_DIR=/path/to/engine CLI_DIR=/path/to/cli ubuntu-xenial
```

View File

@ -0,0 +1,20 @@
# Building your own Docker rpm package
`.rpm` packages can be built from this directory with the following syntax
```shell
make ENGINE_DIR=/path/to/engine CLI_DIR=/path/to/cli rpm
```
If you want to specify a specific distro:
```shell
make ENGINE_DIR=/path/to/engine CLI_DIR=/path/to/cli fedora
```
If you want to specify a specific distro version:
```shell
make ENGINE_DIR=/path/to/engine CLI_DIR=/path/to/cli fedora-25
```