From 715b998404d9cbf52e9c66a1502824c4a8575bf0 Mon Sep 17 00:00:00 2001 From: jknapp Date: Mon, 14 Oct 2024 17:25:10 +0000 Subject: [PATCH] Update README to reflect gitea address and adding logs --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e4eb726..933f51b 100644 --- a/README.md +++ b/README.md @@ -15,8 +15,8 @@ __You can then run a development version of the server by running the following ```console 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 public.ecr.aws/s1f6k4w4/cac:latest +mkdir {web,db,logs} +docker run -d -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 --mount type=bind,source="$(pwd)"/logs,target=/home/myuser/logs -e uid=30001 -e user=myuser -e domain=domain.tld -e serveralias=www.domain.tld --name local-dev repo.anhonesthost.net/cloud-hosting-platform/cac:latest ``` *This will start the processes needed to run sites locally.*