-
Notifications
You must be signed in to change notification settings - Fork 384
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Useful for environments where dealing with Ruby versions is a nightmare
- Loading branch information
Showing
2 changed files
with
25 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,22 @@ These instructions will get you a copy of the Quarkus.io website up and running | |
|
||
### Installation | ||
|
||
#### Using Docker | ||
|
||
1. Install [Docker Desktop](https://docs.docker.com/install/). | ||
2. Fork the [project repository](https://github.com/quarkusio/quarkusio.github.io), then clone your fork. | ||
|
||
git clone [email protected]:YOUR_USER_NAME/quarkusio.github.io.git | ||
|
||
3. Change into the project directory: | ||
|
||
cd quarkusio.github.io | ||
4. Run Docker Composer | ||
|
||
docker-compose up | ||
|
||
5. Now browse to http://localhost:4000 | ||
#### Using a local Ruby environment | ||
[Jekyll static site generator docs](https://jekyllrb.com/docs/). | ||
|
||
1. Install a full [Ruby development environment](https://jekyllrb.com/docs/installation/). If you use `rvm`, run: `rvm use 2.7.1`. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# no version needed since 2020 | ||
|
||
services: | ||
jekyll: | ||
image: bretfisher/jekyll-serve | ||
volumes: | ||
- .:/site | ||
ports: | ||
- '4000:4000' |