You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You can build a new repository for an Ansible Collection using this template by following [Creating a repository from a template](https://help.github.com/en/github/creating-cloning-and-archiving-repositories/creating-a-repository-from-a-template). This README.md contains recommended headings for your collection README.md, with comments describing what each section should contain. Once you have created your collection repository, delete this paragraph and the title above it from your README.md.
<!-- Describe the collection and why a user would want to use it. What does the collection do? -->
5
+
This repo contains the `community.docker` Ansible Collection. The collection includes many modules and plugins to work with Docker.
9
6
10
7
## Tested with Ansible
11
8
12
-
<!-- List the versions of Ansible the collection has been tested with. Must match what is in galaxy.yml. -->
9
+
Tested with the current Ansible 2.9 and 2.10 releases and the current development version of Ansible. Ansible versions before 2.9.10 are not supported.
13
10
14
11
## External requirements
15
12
16
-
<!-- List any external resources the collection depends on, for example minimum versions of an OS, libraries, or utilities. Do not list other Ansible collections here. -->
17
-
18
-
### Supported connections
19
-
<!-- Optional. If your collection supports only specific connection types (such as HTTPAPI, netconf, or others), list them here. -->
13
+
Most modules and plugins require the [Docker SDK for Python](https://pypi.org/project/docker/). For Python 2.6 support, use [the deprecated docker-py library](https://pypi.org/project/docker-py/) instead.
20
14
21
15
## Included content
22
16
23
-
<!-- Galaxy will eventually list the module docs within the UI, but until that is ready, you may need to either describe your plugins etc here, or point to an external docsite to cover that information. -->
17
+
* Connection plugins:
18
+
- community.docker.docker
19
+
* Inventory plugins:
20
+
- community.docker.docker_machine
21
+
- community.docker.docker_swarm
22
+
* Modules:
23
+
- community.docker.docker_compose
24
+
- community.docker.docker_config
25
+
- community.docker.docker_container_info
26
+
- community.docker.docker_container
27
+
- community.docker.docker_host_info
28
+
- community.docker.docker_image_info
29
+
- community.docker.docker_image
30
+
- community.docker.docker_login
31
+
- community.docker.docker_network_info
32
+
- community.docker.docker_network
33
+
- community.docker.docker_node_info
34
+
- community.docker.docker_node
35
+
- community.docker.docker_prune
36
+
- community.docker.docker_secret
37
+
- community.docker.docker_stack_info
38
+
- community.docker.docker_stack
39
+
- community.docker.docker_stack_task_info
40
+
- community.docker.docker_swarm_info
41
+
- community.docker.docker_swarm
42
+
- community.docker.docker_swarm_service_info
43
+
- community.docker.docker_swarm_service
44
+
- community.docker.docker_volume_info
45
+
- community.docker.docker_volume
24
46
25
47
## Using this collection
26
48
27
-
<!--Include some quick examples that cover the most common use cases for your collection content. -->
49
+
Before using the General community collection, you need to install the collection with the `ansible-galaxy` CLI:
You can also include it in a `requirements.yml` file and install it via `ansible-galaxy collection install -r requirements.yml` using the format:
54
+
55
+
```yaml
56
+
collections:
57
+
- name: community.docker
58
+
```
28
59
29
60
See [Ansible Using collections](https://docs.ansible.com/ansible/latest/user_guide/collections_using.html) for more details.
30
61
31
62
## Contributing to this collection
32
63
33
-
<!--Describe how the community can contribute to your collection. At a minimum, include how and where users can create issues to report problems or request features for this collection. List contribution requirements, including preferred workflows and necessary testing, so you can benefit from community PRs. If you are following general Ansible contributor guidelines, you can link to - [Ansible Community Guide](https://docs.ansible.com/ansible/latest/community/index.html). -->
64
+
If you want to develop new content for this collection or improve what is already here, the easiest way to work on the collection is to clone it into one of the configured [`COLLECTIONS_PATH`](https://docs.ansible.com/ansible/latest/reference_appendices/config.html#collections-paths), and work on it there.
34
65
66
+
You can find more information in the [developer guide for collections](https://docs.ansible.com/ansible/devel/dev_guide/developing_collections.html#contributing-to-collections), and in the [Ansible Community Guide](https://docs.ansible.com/ansible/latest/community/index.html).
35
67
36
68
## Release notes
37
69
38
-
See the [changelog](https://github.com/ansible-collections/REPONAMEHERE/tree/main/CHANGELOG.rst).
39
-
40
-
## Roadmap
41
-
42
-
<!-- Optional. Include the roadmap for this collection, and the proposed release/versioning strategy so users can anticipate the upgrade/update cycle. -->
70
+
See the [changelog](https://github.com/ansible-collections/community.docker/tree/main/CHANGELOG.rst).
43
71
44
72
## More information
45
73
46
-
<!-- List out where the user can find additional information, such as working group meeting times, slack/IRC channels, or documentation for the product this collection automates. At a minimum, link to: -->
@@ -55,8 +81,6 @@ See the [changelog](https://github.com/ansible-collections/REPONAMEHERE/tree/mai
55
81
56
82
## Licensing
57
83
58
-
<!-- Include the appropriate license information here and a pointer to the full licensing details. If the collection contains modules migrated from the ansible/ansible repo, you must use the same license that existed in the ansible/ansible repo. See the GNU license example below. -->
59
-
60
84
GNU General Public License v3.0 or later.
61
85
62
-
See [LICENSE](https://www.gnu.org/licenses/gpl-3.0.txt) to see the full text.
86
+
See [COPYING](https://www.gnu.org/licenses/gpl-3.0.txt) to see the full text.
0 commit comments