kayobe/ansible/roles/docker-registry
Michal Nasiadka 90a0ca3443 Change docker_registry network_mode to host
Change-Id: I404dd52701426a10c2e92727bd52b7fd7112abf6
2021-03-19 09:05:14 +00:00
..
defaults Change docker_registry network_mode to host 2021-03-19 09:05:14 +00:00
handlers Docker registry TLS 2020-07-24 09:11:45 +01:00
tasks Change docker_registry network_mode to host 2021-03-19 09:05:14 +00:00
README.md Make docker registry volume configurable 2020-02-19 10:16:00 +00:00

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. docker_registry_datadir_volume: The name or path to use for the docker volume that backs the registry. Defaults to docker_registry.

Dependencies

None

Example Playbook

The following playbook configures a Docker registry.

---
- hosts: docker-registry
  roles:
    - role: stackhpc.docker-registry

Author Information