Skip to content

Commit

Permalink
docs: correct three broken internal links (#1526)
Browse files Browse the repository at this point in the history
* docs: correct broken internal link (/docs/maven-example.md)

1. When I was reading the documentation, I noticed that links to other documents inside the repository were giving a 404 error. So, I cloned the repository and found found that all links such as "[Quickstart](/docs/maven-example.md)" were giving the errors.

2. The fix is to remove the `/docs/` part and the `.md` part.

3. I tested these commits with `bundle exec jekyll serve`. All the pages getting changed by the commits now work correctly.

* docs: correct broken internal link (/docs/conversion.md)

- Removed the `/docs` part and the `.md` part from the link.
- Tested with `bundle exec jekyll serve`.
- Working correctly now.

* docs: correct broken internal link (/docs/installation.md)

- Removed the `/docs` part and the `.md` part from the link.
- Tested with `bundle exec jekyll serve`.
- Working correctly now.

---------

Co-authored-by: Charlie Drage <charlie@charliedrage.com>
  • Loading branch information
soobinrho and cdrage authored Feb 9, 2023
1 parent 37b5038 commit 5fb58ff
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docs/integrations.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,5 +53,5 @@ Technically, Fabric8 Maven Plugin processes the external docker-compose.yml file

**Links:**

- [Quickstart](/docs/maven-example.md)
- [Documentation](https://maven.fabric8.io/#docker-compose)
* [Quickstart](/maven-example)
* [Documentation](https://maven.fabric8.io/#docker-compose)
2 changes: 1 addition & 1 deletion docs/maven-example.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Let's deploy a Springboot Java application with Docker Compose file using Fabric
- Linux or MacOS or Windows
- JDK 1.7+ - [JDK Quick Installation Guide](http://openjdk.java.net/install/)
- Maven 3.x+ - [Maven Installation Guide](http://www.baeldung.com/install-maven-on-windows-linux-mac)
- Kompose - [Kompose Installation Guide](/docs/installation.md)
- Kompose - [Kompose Installation Guide](/installation)

**1. Clone the example project from GitHub**

Expand Down
2 changes: 1 addition & 1 deletion docs/user-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -472,4 +472,4 @@ For Windows, there is also `credsStore` which is `wincred`. Technically it will

Kompose supports Docker Compose versions: 1, 2 and 3. We have limited support on versions 2.1 and 3.2 due to their experimental nature.

A full list on compatibility between all three versions is listed in our [conversion document](/docs/conversion.md) including a list of all incompatible Docker Compose keys.
A full list on compatibility between all three versions is listed in our [conversion document](/conversion) including a list of all incompatible Docker Compose keys.

0 comments on commit 5fb58ff

Please sign in to comment.