From 9cd5bc5693f4a49b82dc8b869937257cb42fd991 Mon Sep 17 00:00:00 2001
From: Simone Spinelli <simone.spinelli@GNT-50059H2.win.dante.org.uk>
Date: Fri, 24 Mar 2023 12:15:30 +0100
Subject: [PATCH] Update README file

---
 README.md | 17 +++++++++++++++++
 1 file changed, 17 insertions(+)

diff --git a/README.md b/README.md
index 1f02d6c..d3bdd36 100644
--- a/README.md
+++ b/README.md
@@ -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. 
 
+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
+```
+
-- 
GitLab