From dc60652b8373b3622fc5b647cfc8a06b89b54480 Mon Sep 17 00:00:00 2001
From: Bolke de Bruin <bolke@xs4all.nl>
Date: Tue, 19 Mar 2024 09:30:03 +0100
Subject: [PATCH] Add docker compose options

---
 README.md | 19 +++++++++++++------
 1 file changed, 13 insertions(+), 6 deletions(-)

diff --git a/README.md b/README.md
index 65552d8..db7d8e5 100644
--- a/README.md
+++ b/README.md
@@ -331,14 +331,21 @@ __NOTE__: The local testing environment uses a self signed certificate. This wor
 If you want to test it on Windows you will need to provide a valid certificate.
 
 ```bash
+# with open id
 cd dev/docker
-docker-compose build
-docker-compose up
-```
+docker-compose -f docker-compose.yml up
+
+# or for arm64 with open id
+docker-compose -f docker-compose-arm64.yml up
 
-You can then connect to the gateway at `https://localhost:9443/connect` which will start the authentication flow. You
-can login with 'admin/admin'. The RDP file will download and you can open it with a remote desktop client. Also
-for logging in 'admin/admin' will work.
+# or for local or pam
+docker-compose -f docker-compose-local.yml up
+```
+    
+You can then connect to the gateway at `https://localhost:9443/connect` for the OpenID connect flavors which will start 
+the authentication flow. Or you can connect directly with the gateway set and the host set to ``xrdp`` if using the ``local`` 
+flavorYou can login with 'admin/admin'. The RDP file will download and you can open it with a remote 
+desktop client. Also for logging in 'admin/admin' will work.
 
 ## Use
 Point your browser to `https://your-gateway/connect`. After authentication
-- 
GitLab