Skip to content

Commit

Permalink
Merge pull request #31 from suraj-webkul/docker-installation-docs-update
Browse files Browse the repository at this point in the history
Docker Installation Guide Updated.
  • Loading branch information
devansh-webkul authored Oct 23, 2024
2 parents 35cc4ab + f04dc89 commit aff0a7f
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
8 changes: 8 additions & 0 deletions docs/2.0/introduction/docker.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,14 @@ Once the image is pulled, you can run a new Docker container using the command b
docker run -it -d -p 80:80 webkul/krayin:2.0.1
```

> **Note:**
> If port 80 is already in use, you can try using a different port. For example, you can map port 8082 on your local machine to port 80 in the container by running the following command:
>
> ```bash
> docker run -it -d -p 8082:80 webkul/krayin:2.0.1
> ```
> After this, you can access the application at `http://localhost:8082/` instead of `http://localhost:80`
#### Step 3: Access Krayin in Your Browser
After the container is up and running, open your browser and navigate to `http://localhost`. This will load the Krayin setup.
Expand Down
8 changes: 8 additions & 0 deletions docs/master/introduction/docker.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,14 @@ Once the image is pulled, you can run a new Docker container using the command b
docker run -it -d -p 80:80 webkul/krayin:2.0.1
```

> **Note:**
> If port 80 is already in use, you can try using a different port. For example, you can map port 8082 on your local machine to port 80 in the container by running the following command:
>
> ```bash
> docker run -it -d -p 8082:80 webkul/krayin:2.0.1
> ```
> After this, you can access the application at `http://localhost:8082/` instead of `http://localhost:80`
#### Step 3: Access Krayin in Your Browser
After the container is up and running, open your browser and navigate to `http://localhost`. This will load the Krayin setup.
Expand Down

0 comments on commit aff0a7f

Please sign in to comment.