From 6ac3a8eec9301f7cfd8b817eb1227400eca25776 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Coscoy?= <147209958+remi-coscoy@users.noreply.github.com> Date: Mon, 17 Mar 2025 13:44:17 +0100 Subject: [PATCH] Changed docker command to match dockerhub command Command taken from https://hub.docker.com/r/lovasoa/sqlpage --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f3368caa..3c4a8664 100644 --- a/README.md +++ b/README.md @@ -149,7 +149,7 @@ To run on a server, you can use [the docker image](https://hub.docker.com/r/lova - [Install docker](https://docs.docker.com/get-docker/) - In a terminal, run the following command: - - `docker run -it --name sqlpage -p 8080:8080 --volume "$(pwd):/var/www" --rm lovasoa/SQLPage` + - `docker run -it --name sqlpage -p 8080:8080 --volume "$(pwd):/var/www" --rm lovasoa/sqlpage` - (`"$(pwd):/var/www"` allows sqlpage to run sql files from your current working directory) - Create a file called index.sql with the contents from [this example](./index.sql) - Open https://localhost:8080 in your browser