From ccf756b42e8b21920c602240487e9e425d97b7d8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stefano=20Borz=C3=AC?= Date: Wed, 6 May 2020 18:21:47 +0200 Subject: [PATCH] Add Linux istructions --- README.md | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 8a81e92..b753c19 100644 --- a/README.md +++ b/README.md @@ -418,14 +418,22 @@ jobs: --- ## Debugging locally -##### Instructions for debugging on windows -- Install docker for windows +##### Instructions for debugging Windows +- [Install docker](https://docs.docker.com/get-docker/) - Open powershell - Navigate to the repo folder - Run `docker build --tag action .` - Run `docker run action` - -##### Instructions for debugging on linux -- Please submit a PR for linux instructions :) + +#### Instructions for debugging on Linux +- [Install docker](https://docs.docker.com/get-docker/) +On Linux you can install docker using your package manager, for example, on a Debian-based distro you can run the following command to install docker: +``` +sudo apt install docker docker.io +``` +- Open the terminal +- Navigate to the repo folder +- Run `docker build --tag action .` +- Run `docker run action` #### Pull Requests Welcome!