Skip to content
Snippets Groups Projects
Commit 9cd5bc56 authored by Simone Spinelli's avatar Simone Spinelli
Browse files

Update README file

parent f1f13493
Branches
Tags
No related merge requests found
...@@ -8,3 +8,20 @@ ansible-playbook -i $the-vm-you-want-to-configure, playbook.yml -e "username=$yo ...@@ -8,3 +8,20 @@ ansible-playbook -i $the-vm-you-want-to-configure, playbook.yml -e "username=$yo
``` ```
Please note the comma after the target. Please note the comma after the target.
Consider that the Docker repository and the username to login on the box are hardcoded in the playbook:
```
- name: Install Docker and ContainerLab
hosts: all
become: true
vars:
docker:
registry_url: gitlab.geant.net:5005/docker/ci_registry <<<<<<<<<<<<<<<<
username: "{{username }}"
private_token: "{{ secret_token}}"
nat_user: nat <<<<<<<<<<<<<<<<
roles:
- docker
- containerlab
```
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment