From 34289150fa03f7106b164b4d598852ed25349a8a Mon Sep 17 00:00:00 2001 From: leic4u <32786903+leic4u@users.noreply.github.com> Date: Thu, 23 Nov 2023 22:17:09 +0800 Subject: [PATCH] chore: update README.md (#202) Fix some mistakes --- README.md | 21 ++++++++++----------- 1 file changed, 10 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index f597c895..90db4a87 100644 --- a/README.md +++ b/README.md @@ -211,17 +211,16 @@ you can easily make the switch. ```bash docker run -dit \ ---name=nginx-ui \ ---restart=always \ --e TZ=Asia/Shanghai \ --v /mnt/user/appdata/nginx:/etc/nginx \ --v /mnt/user/appdata/nginx-ui:/etc/nginx-ui \ --v /var/www:/var/www \ --p 8080:80 -p 8443:443 \ -uozi/nginx-ui:latest + --name=nginx-ui \ + --restart=always \ + -e TZ=Asia/Shanghai \ + -v /mnt/user/appdata/nginx:/etc/nginx \ + -v /mnt/user/appdata/nginx-ui:/etc/nginx-ui \ + -p 8080:80 -p 8443:443 \ + uozi/nginx-ui:latest ``` -3. When your docker container is running, Log in to nginx-ui panel with `http://:/install`. +3. When your docker container is running, Log in to nginx-ui panel with `http://:8080/install`.
@@ -244,7 +243,7 @@ services: volumes: - '/mnt/user/appdata/nginx:/etc/nginx' - '/mnt/user/appdata/nginx-ui:/etc/nginx-ui' - - ' /var/www:/var/www' + - '/var/www:/var/www' ports: - 8080:80 - 8443:443 @@ -262,7 +261,7 @@ docker-compose up -d docker compose up -d ``` -4. When your docker container is running, Log in to nginx-ui panel with `http://:/install`. +4. When your docker container is running, Log in to nginx-ui panel with `http://:8080/install`.