dckerize 0.6.0 → 0.6.1
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 +5 -0
- data/lib/dckerize/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: eb4d4f7ae8a8b8115230d78b29ca2d76700ed800
|
4
|
+
data.tar.gz: 872c007c9157dacb8ed329176932d96b6b39ae99
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c0286a2f0105092950d4287e9e2f2a915ac2cb5082500e2ca5b54646a82ff81b12aa5537cb7af42dae9afd8f22ba64904b58f984313ef20a4fe825991a976ba9
|
7
|
+
data.tar.gz: 278e45fbba7eb421a4cc1d2bd63284ce2dc2247b4ece1f1125cf7a5bfabe3d31b54b5dec925b43fd4befa86e6cc46bb8843355fdec4bece0a5ec3bd83817d766
|
data/README.md
CHANGED
@@ -151,6 +151,11 @@ you can access your application by visiting http://192.168.50.4.
|
|
151
151
|
### Mounting extra files to running containers
|
152
152
|
|
153
153
|
Useful for adding sql dumps to your db container (not the data one). In this case you should have the file in your shared folder and send it from your host in vagrant to your running container. There are several ways to accomplish this, but the simplest way is described [here](http://stackoverflow.com/a/24805696).
|
154
|
+
The fastest way for a running container:
|
155
|
+
|
156
|
+
```
|
157
|
+
docker exec -i <container_id> bash -c 'cat > /path/to/container/file' < /path/to/host/file/
|
158
|
+
```
|
154
159
|
|
155
160
|
## TODO
|
156
161
|
|
data/lib/dckerize/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: dckerize
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.6.
|
4
|
+
version: 0.6.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Pablo Acuña
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-
|
11
|
+
date: 2015-09-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|