6df6277096
Since Ansible 2.5, the use of jinja tests as filters has been deprecated. I've run the script provided by the ansible team to 'fix' the jinja filters to conform to the newer syntax. This fixes the deprecation warnings. Change-Id: I775c849c944f82bdfc779c8c530346e7ebedbd2a |
||
---|---|---|
.. | ||
defaults | ||
tasks | ||
README.md |
Docker Registry
This role can be used to configure a Docker registry running in a Docker container.
Requirements
The host executing the role has the following requirements:
- Docker engine
- Python
docker >= 2.0.0
Role Variables
docker_registry_enabled
: Whether the Docker registry is enabled. Defaults
to true
.
docker_registry_namespace
: Docker image namespace. Defaults to
library
.
docker_registry_image
: Docker image name.
docker_registry_tag
: Docker image tag. Defaults to latest
.
docker_registry_image_full
: Full docker image specification.
docker_registry_restart_policy
: Docker restart policy for
docker_registry
container. Defaults to unless-stopped
.
docker_registry_restart_retries
: Number of Docker restarts. Defaults to 10.
Dependencies
None
Example Playbook
The following playbook configures a Docker registry.
---
- hosts: docker-registry
roles:
- role: stackhpc.docker-registry
Author Information
- Mark Goddard (mark@stackhpc.com)