2015-10-15 22:26:45 -04:00
# Docker Container Options
2015-10-14 05:29:38 -04:00
2015-10-14 05:30:14 -04:00
> New as of 0.3.17
2016-01-11 17:04:46 +01:00
Pass [options ](https://docs.docker.com/engine/reference/run/ ) to Docker during Dokku's `build` , `deploy` and `run` phases
2015-11-15 12:18:35 +01:00
2015-11-15 12:22:40 +01:00
```
2016-07-03 17:16:01 -04:00
docker-options:add <app> <phase(s)> OPTION # Add Docker option to app for phase (comma-separated phase list)
docker-options:remove <app> <phase(s)> OPTION # Remove Docker option from app for phase (comma-separated phase list)
2017-02-20 19:32:59 -07:00
docker-options:report [<app>] [<flag>] # Displays a docker options report for one or more apps
2015-10-14 05:29:38 -04:00
```
2016-01-31 16:27:06 -05:00
> When specifying multiple phases, they **must** be comma-separated _without_ spaces in between each phase, like so:
>
2016-07-03 17:11:23 -04:00
> ```shell
2017-02-20 19:32:59 -07:00
> dokku docker-options:add node-js-app deploy,run "-v /var/log/node-js-app:/app/logs"
2016-01-31 16:27:06 -05:00
> ```
2015-11-15 12:22:40 +01:00
## About Dokku phases
2015-10-14 05:29:38 -04:00
2015-11-15 12:18:35 +01:00
Dokku deploys your application in multiple "phases" and the `docker-options` plugin allows you to pass arguments to their underlying docker container:
- `build` : the container that executes the appropriate buildpack
- `deploy` : the container that executes your running/deployed application
2017-02-20 19:32:59 -07:00
- `run` : the container that executes any arbitrary command via `dokku run`
2015-11-15 12:18:35 +01:00
## Examples
### Add Docker options
2016-07-04 22:59:50 -04:00
Add some options for the deployed/running app and when executing [`dokku run` ](/dokku/deployment/one-off-processes/ ):
2015-11-15 12:18:35 +01:00
```shell
# Mount a host volume in a Docker container: "-v /host/path:/container/path"
2017-02-20 19:32:59 -07:00
dokku docker-options:add node-js-app deploy "-v /var/log/node-js-app:/app/logs"
dokku docker-options:add node-js-app run "-v /var/log/node-js-app:/app/logs"
2015-04-01 12:21:45 -07:00
```
2015-11-15 22:51:57 +01:00
> Note: When [mounting a host directory](https://docs.docker.com/engine/reference/run/#volume-shared-filesystems) in a Dokku app you should first create that directory as user `dokku` and then mount the directory under `/app` in the container using `docker-options` as above. Otherwise the app will lack write permission in the directory.
2015-11-15 12:18:35 +01:00
2017-02-20 19:32:59 -07:00
### Remove a Docker option
```shell
dokku docker-options:remove node-js-app run "-v /var/log/node-js-app:/app/logs"
```
### Displaying docker-options reports about an app
> New as of 0.8.1
You can get a report about the app's docker-options status using the `docker-options:report` command:
2015-04-01 12:21:45 -07:00
2015-10-14 05:29:38 -04:00
```shell
2017-02-20 19:32:59 -07:00
dokku docker-options:report
2016-07-04 22:59:50 -04:00
```
```
2017-02-20 19:32:59 -07:00
=====> node-js-app docker options information
Docker options build:
Docker options deploy: -v /var/log/node-js-app:/app/logs
Docker options run: -v /var/log/node-js-app:/app/logs
=====> python-sample docker options information
Docker options build:
Docker options deploy:
Docker options run:
=====> ruby-sample docker options information
Docker options build:
Docker options deploy:
Docker options run:
2015-04-01 12:21:45 -07:00
```
2017-02-20 19:32:59 -07:00
You can run the command for a specific app also.
2015-10-14 05:29:38 -04:00
```shell
2017-02-20 19:32:59 -07:00
dokku docker-options:report node-js-app
2015-04-01 12:21:45 -07:00
```
2017-02-20 19:32:59 -07:00
```
=====> node-js-app docker options information
Storage build mounts:
Storage deploy mounts: -v /var/log/node-js-app:/app/logs
Storage run mounts: -v /var/log/node-js-app:/app/logs
```
You can pass flags which will output only the value of the specific information you want. For example:
```shell
dokku docker-options:report node-js-app --docker-options-build
```
2015-11-15 12:18:35 +01:00
## Advanced usage
2015-04-01 12:21:45 -07:00
2015-11-15 12:18:35 +01:00
In your applications folder `/home/dokku/app_name` create a file called `DOCKER_OPTIONS_RUN` (or `DOCKER_OPTIONS_BUILD` or `DOCKER_OPTIONS_DEPLOY` ).
2015-04-01 12:21:45 -07:00
2015-11-15 12:18:35 +01:00
Inside this file list one Docker option per line. For example:
2015-04-01 12:21:45 -07:00
2015-10-14 05:29:38 -04:00
```shell
2015-05-11 20:59:37 -04:00
--link container_name:alias
2015-04-01 12:21:45 -07:00
-v /host/path:/container/path
-v /another/container/path
```
2015-11-15 12:18:35 +01:00
The above example will result in the following options being passed to Docker during `dokku run` :
2015-04-01 12:21:45 -07:00
2015-10-14 05:29:38 -04:00
```shell
2015-05-11 20:59:37 -04:00
--link container_name:alias -v /host/path:/container/path -v /another/container/path
2015-04-01 12:21:45 -07:00
```
You may also include comments (lines beginning with a #) and blank lines in the DOCKER_OPTIONS file.
2016-11-15 09:12:38 -06:00
More information on Docker options can be found here: https://docs.docker.com/engine/reference/commandline/run/.