Daniel Andrei Minca
ced24b7b03
fix unclear documentation for docker container
...
the docker container module's `exposed_ports` was slightly ambigous.
Use the official Docker documentation to define what an `exposed port`
is.
Resolves : ansible/ansible-modules-core#5303
Signed-off-by: Daniel Andrei Minca <mandrei17@gmail.com>
9 years ago
John R Barker
312f578f93
Bulk spelling improvement to modules-core ( #5225 )
...
* Correct spelling mistakes
* Correct more spelling issues
* merge conflict
* Revert typo in parms
9 years ago
John Barker
275fa3f055
Correct functional typos
9 years ago
Chris Houseknecht
0156cb942e
Surface Compose stdout on failure
...
Signed-off-by: Chris Houseknecht <chouseknecht@ansible.com>
9 years ago
Chris Houseknecht
fba5883dd1
Improved enumeration of actions
9 years ago
Chris Houseknecht
a10ce8ff25
Improved build and pull error handling
9 years ago
Chris Houseknecht
90af27f20f
Merge pull request #5050 from chouseknecht/devel
...
Fix intermittent image push error
9 years ago
Chris Houseknecht
c03697c81e
Merge pull request #4961 from shaung/iss4504
...
Fix #4504 Respect timeout option when starting/stopping/restarting co…
9 years ago
Chris Houseknecht
523780a7ca
Let docker-py handle decoding and JSON parsing of stream data. Fixes #4930 .
9 years ago
Chris Houseknecht
84020b39ee
Put requested devices in correct format to enable config comparison. Fixes #5000 .
9 years ago
Chris Houseknecht
e0aede1266
Merge pull request #4825 from adityamarella/devel
...
Docker module: add support for OomScoreAdj
9 years ago
shaung
4e9e546ef0
Fix #4504 Respect timeout option when starting/stopping/restarting containers.
9 years ago
Chris Houseknecht
4a560d4a15
Cast scale value to int. Fixes #4592 .
9 years ago
Chris Houseknecht
5ab1a6f88d
Make project start and stop error handling more resilient, and improve message text.
9 years ago
Aditya Marella
bee0aeaf86
Docker module: add support for OomScoreAdj
...
* docker-py param name oom_score_adj
* translates to OomScoreAdj in the docker remote API
* setting version_added to "2.2"
9 years ago
Chris Houseknecht
de0122fdaf
Set default log_driver to None to prevent config comparison when a log_driver is not specified. Fixes #4600 .
9 years ago
Chris Houseknecht
0d43a01462
Purge networks using network name rather than ID. Fixes 4596.
9 years ago
Chris Houseknecht
cac4e68090
Default restart_retries to None rather than 0. Fixes #4534 .
9 years ago
chouseknecht
48941291c1
Fix container labels expected vs actual comparison.
9 years ago
chouseknecht
42540ae510
Fix doc strings. Use of > was breaking HTML generation on docs site module page.
9 years ago
Linus Arver
74c8954d86
docker_service: fix files/project_files typo
...
The original decision to rename from `project_files' to `files' was in
3a5dd00076 .
10 years ago
chouseknecht
95f69c55fa
Exposing tcp and udp for same port fails. Fixes issue #4354 .
10 years ago
PikachuEXE
997fa3b2b7
Allow specifying human readable value for option `memory_limit` again ( #4049 )
10 years ago
chouseknecht
e7abbbf134
Fix network alias and network link comparison.
...
- Using set based comparison was not working consistently
- With != operator worked locally but consistently failed on Travis
- With 'not in' operator failed locally and on Travis
10 years ago
chouseknecht
4c3bf24ebf
If debug true, include actions and differences in output.
10 years ago
Chris Houseknecht
70806fcfe4
Some post merge clean up: ( #4406 )
...
- Removed required_if.
- Fixed doc strings.
- Removed debug output being appended to actions.
- Put import of basics at bottom to be consistent with other docker modules
- Added 'containers' alias to 'connected' param
- Put facts in ansible_facts.ansible_docker_network
10 years ago
Brian Coca
decb2ec9fa
doc fix
10 years ago
Chris Houseknecht
fdfdfe9017
Adding docker_network module. ( #4404 )
10 years ago
muxator
24fa1ab426
typo in the documentation of the "state" parameter ( #4353 )
10 years ago
Chris Houseknecht
0358dee095
Add buildargs parameter to support Dockerfile ARG directive. ( #4349 )
...
* Add buildargs parameter to support Dockerfile ARG directive.
* Fix doc_strings. Doc string for load_path was completely missing.
10 years ago
chouseknecht
cc101164a8
Default repository tag value to tag parameter value or 'latest'.
10 years ago
chouseknecht
d36f04e7f2
Always returns changed when state present and name includes :tag.
10 years ago
Chris Houseknecht
c0d373f258
Add *build* to state parameter choices. Updated deprecation message. Will be deprecated in release 2.3. Removed ( #4342 )
...
mention of *tagged* state in the force parameter doc strings. There is no *tagged* state.
10 years ago
chouseknecht
c27054090a
Fix image tag operation. Allows repository in form of repo:tag. If no tag value, defaults to 'latest'.
10 years ago
chouseknecht
af177834af
Added implementation of ignore_image, which prevents recreation of containers on image change.
10 years ago
chouseknecht
74dbb61b8d
Fix #3670 host IP defaults to 0.0.0.0 ignoriing bridge Host IP option.
10 years ago
chouseknecht
18343c4e5a
Improved documentation for returned actions.
10 years ago
chouseknecht
b9696a349f
When build true call docker-compose build, and add nocache option.
10 years ago
chouseknecht
81b3022eb5
Set version_added
10 years ago
chouseknecht
7e93dbb264
Add pull option to pull images prior to evaluating service state.
10 years ago
Julien Vey
0bf24f2ae1
Fix Typo in docker_image_facts module
10 years ago
Chris Houseknecht
77db7011f0
Merge pull request #4173 from chouseknecht/fix_entrypoint
...
Fix entrypoint. Should behave the same as command.
10 years ago
Chris Houseknecht
a75ee76aa3
Entrypoint fails with 'command not found' error.
10 years ago
Chris Houseknecht
58b551774c
Add push parameter. Let API handle registry authentication check.
10 years ago
Chris Houseknecht
1058094b64
Fix module failing when no ports are exposed
10 years ago
jjshoe
90b8281a51
Fixed a typo ( #4168 )
10 years ago
Chris Houseknecht
73dbb744b5
Merge pull request #3887 from Jorge-Rodriguez/docker-image-no-push-on-load
...
Don't forcibly push loaded images to registry.
10 years ago
Chris Houseknecht
328f047fda
Merge pull request #4040 from qiluo-msft/qiluo/actual_stdin_open
...
Fix getting actual_stdin_open
10 years ago
Chris Houseknecht
4aee56553f
Fix multi-interface port binding.
10 years ago
Chris Houseknecht
9c88c45dd2
Merge pull request #4155 from chouseknecht/fix_4091
...
Support publishing all ports.
10 years ago