You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
63
+
If you are using [remote Docker images][docker image] you may also define process types by running `deis pull` while passing a stringified Procfile to the `--procfile` CLI option.
65
64
66
-
For example, passing process types inline:
65
+
Declaring process types examples
66
+
67
+
* passing process types inline:
67
68
68
69
```
69
70
$ deis pull deis/example-go:latest --procfile="cmd: /app/bin/boot"
70
71
```
71
72
72
-
Read a `Procfile` in another directory:
73
+
* Reading a `Procfile`:
73
74
74
75
```
75
76
$ deis pull deis/example-go:latest --procfile="$(cat deploy/Procfile)"
76
-
```
77
-
78
-
Or via a Procfile located in your current, working directory:
0 commit comments