We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8d8b7ec commit 86cdb06Copy full SHA for 86cdb06
1 file changed
src/applications/managing-app-processes.md
@@ -63,13 +63,19 @@ sleeper: sleep 900
63
If you are using [remote Docker images][docker image], you may define process types by either running `deis pull` with a
64
`Procfile` in your working directory, or by passing a stringified Procfile to the `--procfile` CLI option.
65
66
-For example:
+For example, passing process types inline:
67
68
```
69
$ deis pull deis/example-go:latest --procfile="cmd: /app/bin/boot"
70
71
72
-Or via a Procfile:
+Read a `Procfile` in another directory:
73
+
74
+```
75
+$ deis pull deis/example-go:latest --procfile="$(cat deploy/Procfile)"
76
77
78
+Or via a Procfile located in your current, working directory:
79
80
81
$ cat Procfile
0 commit comments