You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+14Lines changed: 14 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -30,6 +30,7 @@ in the [#perl6 IRC channel](https://perl6.org/community/irc).
30
30
- [Mojolicious / Web Server](#mojolicious--web-server)
31
31
- [SASS compiler](#sass-compiler)
32
32
-[Build and view the documentation](#build-and-view-the-documentation)
33
+
-[Using Docker](#using-docker)
33
34
34
35
## General principles
35
36
@@ -262,3 +263,16 @@ render the HTML documentation
262
263
263
264
Now point your web browser to http://localhost:3000 to view the
264
265
documentation.
266
+
267
+
#### Using Docker
268
+
269
+
You can skip all the above and just build and view documentation with these simple commands (if you have docker already installed):
270
+
271
+
$ docker build -t perl6-doc .
272
+
$ docker run -p 3000:3000 -it -v `pwd`:/doc perl6-doc
273
+
274
+
This will build the documentation for you by default and it will take some time, but for subsequent use you may want to skip build part if nothing has been changed:
0 commit comments