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
Copy file name to clipboardExpand all lines: docs/using_deis/using-buildpacks.rst
+30-20Lines changed: 30 additions & 20 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@
6
6
Using Buildpacks
7
7
================
8
8
Deis supports deploying applications via `Heroku Buildpacks`_.
9
-
Buildpacks are useful if you're interested in following Heroku's best practices for building applications or if you are deploying an application that already runs on Heroku.
9
+
Buildpacks are useful if you're interested in following Heroku's best practices for building applications or if you are deploying an application that already runs on Heroku.
10
10
11
11
Prepare an Application
12
12
----------------------
@@ -62,7 +62,7 @@ Use ``git push deis master`` to deploy your application.
62
62
-----> Compiled slug size is 12M
63
63
-----> Building Docker image
64
64
Uploading context 11.81 MB
65
-
Uploading context
65
+
Uploading context
66
66
Step 0 : FROM deis/slugrunner
67
67
---> 5567a808891d
68
68
Step 1 : RUN mkdir -p /app
@@ -83,7 +83,7 @@ Use ``git push deis master`` to deploy your application.
83
83
84
84
-----> unisex-huntress deployed to Deis
85
85
http://unisex-huntress.local.deisapp.com
86
-
86
+
87
87
To learn more, use `deis help` or visit http://deis.io
88
88
89
89
To ssh://git@local.deisapp.com:2222/unisex-huntress.git
@@ -98,17 +98,22 @@ Included Buildpacks
98
98
-------------------
99
99
For convenience, a number of buildpacks come bundled with Deis:
100
100
101
-
* `Java buildpack`_
102
101
* `Ruby Buildpack`_
103
-
* `Python Buildpack`_
104
102
* `Nodejs Buildpack`_
103
+
* `Java Buildpack`_
104
+
* `Gradle Buildpack`_
105
+
* `Grails Buildpack`_
105
106
* `Play Buildpack`_
106
-
* `PHP Buildpack`_
107
+
* `Python Buildpack`_
107
108
* `Clojure Buildpack`_
108
-
* `Golang Buildpack`_
109
+
* `PHP Buildpack`_
110
+
* `Go Buildpack`_
111
+
* `Meteorite Buildpack`_
112
+
* `Perl Buildpack`_
109
113
* `Scala Buildpack`_
110
114
* `Dart Buildpack`_
111
-
* `Perl Buildpack`_
115
+
* `Nginx Buildpack`_
116
+
* `Apache Buildpack`_
112
117
113
118
Deis will cycle through the ``bin/detect`` script of each buildpack to match the code you
114
119
are pushing.
@@ -118,7 +123,7 @@ Using a Custom Buildpack
118
123
To use a custom buildpack, set the ``BUILDPACK_URL`` environment variable.
119
124
120
125
.. code-block:: console
121
-
126
+
122
127
$ deis config:set BUILDPACK_URL=https://github.com/dpiddy/heroku-buildpack-ruby-minimal
123
128
Creating config... done, v2
124
129
@@ -128,15 +133,20 @@ To use a custom buildpack, set the ``BUILDPACK_URL`` environment variable.
128
133
On your next ``git push``, the custom buildpack will be used.
0 commit comments