Skip to content

aboutbits/ansible-docker-installation

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

35 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Ansible Docker Installation Role

Installation of a Docker server.

Role Variables

  • docker_installation_bridge_ip: Specifies the IP address and netmask to use for Docker’s default bridge

Example Playbook

- hosts: all
  tasks:
    - ansible.builtin.include_role:
        name: ansible-docker-installation
      vars:
        docker_installation_bridge_ip: "172.26.0.1/16"

Versioning

In order to have a verioning in place and working, create leightweight tags that point to the appropriate minor release versions.

Creating a new minor release:

git tag v3
git push --tags

Replacing an already existing minor release:

git tag -d v3
git push origin :refs/tags/v3
git tag v3
git push --tags