whally 0.1.1 → 0.1.2
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 +9 -9
- data/bin/whally +2 -2
- data/docker-compose.yml +1 -1
- data/lib/whally/version.rb +1 -1
- data/spec/spec_helper.rb +1 -1
- 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: 66c88f0281aff4c330d70ffa123cacc7e5a039d1
|
4
|
+
data.tar.gz: 22b39b71aaa3fc531bd1f4a494271a2a02e36ab3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c411f9c7b643fa5c64624f51ef487e4fba934de9a5533a7632211d8cc5abb431adadab67a84e8f96ab72cea96e957962f977dad2b3c20ad2b6fe56b59c04cb46
|
7
|
+
data.tar.gz: 3c237a70dd5bfa59dac616ba4328d67383dbd92b74eefe22f0f6413bca4820888b3f6b482c4c5cb9b7e1c232994b16070411bc7ce47952741746f51bfdf6559d
|
data/README.md
CHANGED
@@ -1,10 +1,10 @@
|
|
1
|
-
# [
|
1
|
+
# [Whally](https://github.com/IcaliaLabs/whales)
|
2
2
|
|
3
3
|
[](https://codeclimate.com/repos/571a34d6c0558e4075003682/feed)
|
4
4
|
[](https://codeclimate.com/repos/571a34d6c0558e4075003682/feed)
|
5
5
|
[](https://codeclimate.com/repos/571a34d6c0558e4075003682/coverage)
|
6
6
|
|
7
|
-
**
|
7
|
+
**Whally** is a command with the intention to automatically dockerize rails app.
|
8
8
|
|
9
9
|
|
10
10
|
## Table of contents
|
@@ -19,17 +19,17 @@
|
|
19
19
|
To install the gem you can just run the following command:
|
20
20
|
|
21
21
|
```console
|
22
|
-
% gem install
|
22
|
+
% gem install whally
|
23
23
|
```
|
24
24
|
|
25
|
-
You now have access to the `
|
25
|
+
You now have access to the `whally` command through the CLI.
|
26
26
|
|
27
27
|
## Usage
|
28
28
|
|
29
|
-
To dockerize a rails app, just use the
|
29
|
+
To dockerize a rails app, just use the whally command:
|
30
30
|
|
31
31
|
```console
|
32
|
-
%
|
32
|
+
% whally dockerize
|
33
33
|
```
|
34
34
|
|
35
35
|
|
@@ -37,7 +37,7 @@ To dockerize a rails app, just use the whales command:
|
|
37
37
|
|
38
38
|
It will create the `dockerfile` and `docker-compose.yml` that your app needs based on your Gemfile.
|
39
39
|
|
40
|
-
It will scan your gemfile and call [
|
40
|
+
It will scan your gemfile and call [WhallyAPI](http://github.com/icalialabs/whaleapi) and send it an array of all the gems.
|
41
41
|
It will receive all gems dependencies that will go straight to `dockerfile` and all gems services that will go straight to `docker-compose.yml`
|
42
42
|
|
43
43
|
After that you can just run `docker-compose up -d` and start working on your newly dockerized app!
|
@@ -45,7 +45,7 @@ After that you can just run `docker-compose up -d` and start working on your new
|
|
45
45
|
|
46
46
|
It will also:
|
47
47
|
|
48
|
-
1. Run `docker-compose up -d` to start your container when `
|
48
|
+
1. Run `docker-compose up -d` to start your container when `whally dockerize` is called.
|
49
49
|
|
50
50
|
|
51
51
|
## Bug tracker & feature request
|
@@ -64,4 +64,4 @@ Thank you [contributors](https://github.com/IcaliaLabs/whales/graphs/contributor
|
|
64
64
|
|
65
65
|

|
66
66
|
|
67
|
-
|
67
|
+
WhallyAPI is maintained by [Icalia Labs](http://www.icalialabs.com/team).
|
data/bin/whally
CHANGED
data/docker-compose.yml
CHANGED
data/lib/whally/version.rb
CHANGED
data/spec/spec_helper.rb
CHANGED