Desk-docker Role¶
Description: No description available
Variables¶
author: Kevin Veen-Birchenbach
description: Installs Docker and Docker Compose, and adds a user to the Docker group for non-root usage on development machines.
license: Infinito.Nexus NonCommercial License
license_url: https://s.infinito.nexus/license
company: Kevin Veen-Birchenbach
Consulting & Coaching Solutions https://www.veen.world
galaxy_tags: [‘docker’, ‘development’]
repository: https://s.infinito.nexus/code
issue_tracker_url: https://s.infinito.nexus/issues
documentation: https://s.infinito.nexus/code/tree/main/roles/desk-docker
min_ansible_version: 2.9
platforms: [{‘name’: ‘Archlinux’, ‘versions’: [‘all’]}]
README¶
README for PC-Docker Playbook¶
Overview¶
This playbook, desk-docker, is part of a larger collection housed
within the infinito repository. It is specifically tailored for
setting up Docker and Docker Compose on personal computers (PCs) used
for development purposes. The primary goal is to facilitate a
development environment on individual workstations rather than
configuring servers for hosting or distributing Docker images.
Contents¶
The main.yml file in the desk-docker role consists of two
primary tasks:
Install Docker: This task uses the
community.general.pacmanmodule to installdockeranddocker-composeon the system. It ensures that these packages are present on the PC.User Group Configuration: This task adds a specified user (denoted as
{{users.client.username}}) to the Docker user group. This is crucial for allowing the specified user to interact with Docker without needing superuser permissions.
Use Case¶
The playbook is designed for developers who require Docker in their local development environments. It simplifies the process of Docker installation and configuration, making it straightforward for developers to start containerizing their applications without the complexities often encountered in a server or production environment.
Prerequisites¶
Ansible: Ensure that Ansible is installed on your system to run this playbook.
Arch Linux-based System: This playbook uses the
pacmanpackage manager, indicating it’s designed for Arch Linux-based systems.
Running the Playbook¶
To run this playbook: 1. Clone the infinito repository. 2. Navigate
to the roles/desk-docker directory. 3. Run the playbook using the
appropriate Ansible commands, ensuring that you have the necessary
privileges.
Important Notes¶
Not for Server Use: This playbook is not designed for server environments. It is optimized for individual development machines.
Customization: You may need to customize the playbook, especially the
{{users.client.username}}variable, to suit your specific setup.Security Considerations: While adding a user to the Docker group provides ease of use, be aware of the security implications. It grants the user elevated privileges which, if misused, can affect the entire system.
Support & Contribution¶
For support, suggestions, or contributions, please raise an issue or a
pull request in the infinito repository. This project welcomes
contributions from the developer community.