ecs_compose 0.1.0.pre2 → 0.1.0.pre3
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 +12 -5
- data/exe/ecs-compose +1 -1
- data/lib/ecs_compose/cli.rb +2 -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: 4fbbe54755b0b5dec1afb9e69c2ac60f9596bfb5
|
|
4
|
+
data.tar.gz: 7af5f4efec236b452d48cd59459b110c52ad54b2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ce8958805db591750f41d0e1df666928ccd08a89b19f48ba550e3971819624b96b7364a021593fc5968fe09f159069eb164df097145dd94282907cc109e20f1f
|
|
7
|
+
data.tar.gz: 2ad1d9684ebda80d7f77d24a4b41eac61d22a3b8f4c695b76198939b4a1d232e8028e1e344e659a8e3736aa75f9899f51ea5fb92cb2a47c46f1014ffdca2b1df
|
data/README.md
CHANGED
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
# EcsCompose
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
**This is a work in progress!**
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
This gem attempts to provide a `docker-compose`-like interface to Amazon EC2 Container Service (ECS). It takes a `docker-compose.yml` file, and uses the included container definitions to update an ECS task definition and an ECS service.
|
|
6
|
+
|
|
7
|
+
This is still somewhat rudimentary, and the command-line interface is subject to change.
|
|
6
8
|
|
|
7
9
|
## Installation
|
|
8
10
|
|
|
@@ -14,7 +16,7 @@ gem 'ecs_compose'
|
|
|
14
16
|
|
|
15
17
|
And then execute:
|
|
16
18
|
|
|
17
|
-
$ bundle
|
|
19
|
+
$ bundle install
|
|
18
20
|
|
|
19
21
|
Or install it yourself as:
|
|
20
22
|
|
|
@@ -22,7 +24,13 @@ Or install it yourself as:
|
|
|
22
24
|
|
|
23
25
|
## Usage
|
|
24
26
|
|
|
25
|
-
|
|
27
|
+
Using the Amazon Web Services console, create a new ECS cluster and define a service `my-service`. Describe your service using a standard `docker-compose.yml` file. Then run:
|
|
28
|
+
|
|
29
|
+
```sh
|
|
30
|
+
ecs-compose up my-service docker-compose.yml
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
This will update the task definition `my-service`, and then update the running copy of `my-service` to the new task definition.
|
|
26
34
|
|
|
27
35
|
## Development
|
|
28
36
|
|
|
@@ -34,7 +42,6 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
|
|
|
34
42
|
|
|
35
43
|
Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/ecs_compose.
|
|
36
44
|
|
|
37
|
-
|
|
38
45
|
## License
|
|
39
46
|
|
|
40
47
|
The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
|
data/exe/ecs-compose
CHANGED
data/lib/ecs_compose/cli.rb
CHANGED