Skip to content

Commit cac265f

Browse files
authored
Fix prettier complaints
1 parent a607104 commit cac265f

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

INSTALL.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
- [Local setup on Windows](#local-setup-on-windows)
77
- [Local setup using Docker (Recommended)](#local-setup-using-docker-recommended)
88
- [Build your own docker image](#build-your-own-docker-image)
9+
- [Have Bugs on Docker Image?](#have-bugs-on-docker-image)
910
- [Local Setup with Development Containers](#local-setup-with-development-containers)
1011
- [Local Setup (Legacy, no longer supported)](#local-setup-legacy-no-longer-supported)
1112
- [Deployment](#deployment)
@@ -76,7 +77,7 @@ $ docker compose up --build
7677
7778
If you want to use a specific docker version, you can do so by changing `latest` tag to `your_version` in `docker-compose.yaml`. For example, you might have created your website on `v0.10.0` and you want to stick with that.
7879

79-
## Have Bugs on Docker Image?
80+
### Have Bugs on Docker Image?
8081

8182
Sometimes, there might be some bugs in the current docker image. It might be version mismatch or anything. If you want to debug and easily solve the problem for yourself you can do the following steps:
8283

@@ -92,17 +93,19 @@ docker compose exec -it jekyll /bin/bash
9293
```
9394

9495
Then you can run the script:
96+
9597
```
9698
./bin/entry_point.sh
9799
```
98100

99-
You might see problems for package dependecy or something which is not available. You can fix it now by using
101+
You might see problems for package dependecy or something which is not available. You can fix it now by using
102+
100103
```
101104
bundle install
102105
./bin/entry_point.sh
103106
```
104107

105-
Most likely, this will solve the problem but it shouldn't really happen. So, please open a bug report for us.
108+
Most likely, this will solve the problem but it shouldn't really happen. So, please open a bug report for us.
106109

107110
## Local Setup with Development Containers
108111

0 commit comments

Comments
 (0)