From a5c19f7f87994967df61d0d1ecd3baa49a0a7993 Mon Sep 17 00:00:00 2001 From: Deepak KC Date: Tue, 17 Sep 2024 13:56:26 +0300 Subject: [PATCH] minor update --- docs/dockercompose.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/dockercompose.md b/docs/dockercompose.md index cb7e562..9d5ba25 100644 --- a/docs/dockercompose.md +++ b/docs/dockercompose.md @@ -207,7 +207,7 @@ services: ports: - "80:80" # Map port 80 on the host to port 80 in the container, first par is host port on the host machine while second part is the port inside container volumes: - - ./index.php:/var/www/html/index.php # Bind-mount local index.php + - ./public:/var/www/html/index.php # Bind-mount local index.php depends_on: - database # Ensure the database service starts before the webserver