dokkufy 0.1.2 → 0.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +8 -0
- data/lib/dokkufy/info.rb +1 -1
- data/scripts/install_dokku.sh +4 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: deeaa8ef59c14b0a4c4aadcda3199642f769713e
|
|
4
|
+
data.tar.gz: e5ad29c3a2e29cc78c8f64fe6993ba96ab0eb9db
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3c9fb43cddf2b1570b96b7671806714535b32d862e044d6cac639500118e7192d698d4e978e335372576d342f75ca950a760481a4ad562867140347045fe9397
|
|
7
|
+
data.tar.gz: 6cf7daa5e7c7dcb91b585bb83e994ec70b535822aa679261f54e47ad2319ef9cdb3666c4d077f4c92bb0463cef037559bf03502886dae8cd2093d9c95583609e
|
data/README.md
CHANGED
|
@@ -2,6 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
A [Dokku](https://github.com/progrium/dokku) toolbelt inspired by the [Heroku toolbelt](https://toolbelt.heroku.com/)
|
|
4
4
|
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
```
|
|
8
|
+
gem install dokkufy
|
|
9
|
+
```
|
|
10
|
+
|
|
5
11
|
## Basic usage
|
|
6
12
|
|
|
7
13
|
Want to build your own Heroku? Dokku and Dokkufy make this possible.
|
|
@@ -113,6 +119,8 @@ $ ssh -t dokku@example.com run test_app ls
|
|
|
113
119
|
|
|
114
120
|
## Release notes
|
|
115
121
|
|
|
122
|
+
<<<<<<< HEAD
|
|
123
|
+
* **0.1.3** Applies double install fix on 14.04
|
|
116
124
|
* **0.1.0** Adds the `dokku` command
|
|
117
125
|
* **0.0.7** Adds the (un)dokkufication of apps
|
|
118
126
|
* **0.0.6** Adds plugin uninstall
|
data/lib/dokkufy/info.rb
CHANGED
data/scripts/install_dokku.sh
CHANGED
|
@@ -3,7 +3,11 @@ VERSION=$(lsb_release -sr)
|
|
|
3
3
|
OLD_VERSION="12.04"
|
|
4
4
|
|
|
5
5
|
if [ "$VERSION" == "$OLD_VERSION" ]; then
|
|
6
|
+
# required for 12.04
|
|
6
7
|
sudo apt-get install -y python-software-properties
|
|
8
|
+
else
|
|
9
|
+
# required workaround for bug on 14.04
|
|
10
|
+
wget -qO- https://raw.github.com/progrium/dokku/$OPTION1/bootstrap.sh | sudo DOKKU_TAG=v0.2.3 bash
|
|
7
11
|
fi
|
|
8
12
|
|
|
9
13
|
wget -qO- https://raw.github.com/progrium/dokku/$OPTION1/bootstrap.sh | sudo DOKKU_TAG=v0.2.3 bash
|