We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 19e2ffb + 72c4038 commit c9389f6Copy full SHA for c9389f6
1 file changed
compose.yaml
@@ -2,17 +2,22 @@
2
#
3
# docker compose build
4
# docker compose run --rm rurema rake -T
5
-# docker compose run --rm rurema rake generate:2.7.0 statichtml:2.7.0
6
-# open _site/2.7.0/index.html instead of /tmp/html/2.7.0/index.html
+# docker compose run --rm rurema rake generate:3.4 statichtml:3.4
+# open _site/3.4/index.html instead of /tmp/html/3.4/index.html
7
services:
8
rurema:
9
- build: .
+ build:
10
+ context: .
11
volumes:
12
- ..:/workspaces:cached
13
- "./_site:/tmp/html/"
14
+ - "bundle_cache:/usr/local/bundle"
15
web:
16
image: nginx
17
ports:
- - "8080:80"
18
+ - "8080:80"
19
- - "./_site:/usr/share/nginx/html:ro"
20
+ - "./_site:/usr/share/nginx/html:ro"
21
+
22
+volumes:
23
+ bundle_cache:
0 commit comments