From da8e2fcb9c60153e4c361c593a4801ae557db099 Mon Sep 17 00:00:00 2001 From: jknapp Date: Sun, 10 Dec 2023 21:38:28 +0000 Subject: [PATCH] Update Readme to reflect correction Fix for command --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index df62b94..4098075 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ __You can then run a development version of the server by running the following mkdir -p local-development/domain.tld cd local-development/domain.tld mkdir {web,db} -docker run -it -p 80:80 -p 443:443 -e PHPVER=81 -e environment=DEV --mount type=bind,source="$(pwd)"/web,target=/home/myuser/public_html --mount type=bind,source="$(pwd)"/db,target=/var/lib/mysql -e uid=30001 -e user=myuser -e domain=domain.tld -e serveralias=www.domain.tld --name local-dev cac:latest +docker run -it -p 80:80 -p 443:443 -e PHPVER=81 -e environment=DEV --mount type=bind,source="$(pwd)"/web,target=/home/myuser/public_html --mount type=bind,source="$(pwd)"/db,target=/var/lib/mysql -e uid=30001 -e user=myuser -e domain=domain.tld -e serveralias=www.domain.tld --name local-dev public.ecr.aws/s1f6k4w4/cac:latest ``` *This will start the processes needed to run sites locally.*