Skip to content

Commit 77b7368

Browse files
authored
Merge pull request academicpages#2690 from FahimFBA/issue-2689
fix: typo and extra line break
2 parents e2a7acf + a290b4d commit 77b7368

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

Diff for: README.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,9 @@ To run the `docker run` command on Windows, you need to adjust the syntax for th
5757
### Steps for Windows:
5858
1. **Check Docker Installation**: Ensure Docker is installed and running.
5959
2. **Adjust Path for Volume Mapping**:
60+
6061
- On Windows, replace `$(pwd)` with the full absolute path to your current directory. For example:
62+
6163
```bash
6264
-v C:\path\to\your\site:/usr/src/app
6365
```
@@ -68,7 +70,7 @@ docker run -p 4000:4000 --rm -v C:\path\to\your\site:/usr/src/app jekyll-site
6870
```
6971
7072
### Things to Keep in Mind:
71-
1. **Use PowerShell?**:
73+
1. **Use PowerShell**:
7274
- If you are using PowerShell, you can use `${PWD}` for the current directory:
7375
```bash
7476
docker run -p 4000:4000 --rm -v ${PWD}:/usr/src/app jekyll-site
@@ -82,10 +84,12 @@ docker run -p 4000:4000 --rm -v C:\path\to\your\site:/usr/src/app jekyll-site
8284

8385
3. **Run in Command Prompt or PowerShell**:
8486
- In *Command Prompt*:
87+
8588
```bash
8689
docker run -p 4000:4000 --rm -v C:\path\to\your\site:/usr/src/app jekyll-site
8790
```
8891
- In *PowerShell*:
92+
8993
```bash
9094
docker run -p 4000:4000 --rm -v ${PWD}:/usr/src/app jekyll-site
9195
```

0 commit comments

Comments
 (0)