File tree Expand file tree Collapse file tree 3 files changed +27
-0
lines changed Expand file tree Collapse file tree 3 files changed +27
-0
lines changed Original file line number Diff line number Diff line change
1
+ FROM vvakame/review:5.8
2
+
3
+ WORKDIR /book
4
+
5
+ COPY . /book
6
+
7
+ RUN ./setup.sh
Original file line number Diff line number Diff line change @@ -207,6 +207,17 @@ Docker環境でも以下のように指定できます。
207
207
$ REVIEW_CONFIG_FILE=config-ebook.yml ./build-in-docker.sh
208
208
```
209
209
210
+ Docker Composeを利用すると以下のように指定できます。
211
+
212
+ ```
213
+ $ docker compose up
214
+ ```
215
+ または
216
+
217
+ ```
218
+ $ docker compose run -e REVIEW_CONFIG_FILE=config.yml --rm review npm run pdf
219
+ ```
220
+
210
221
紙版と電子版では以下のような違いがあります。
211
222
212
223
* 紙版:印刷用に、トンボ、デジタルトンボを設置。いくつかの同人誌印刷所で要求事項となっているノドへの隠しノンブル、大扉からのアラビア数字通し。ハイパーリンクは無効化。表紙(cover)は無視。
Original file line number Diff line number Diff line change
1
+ services :
2
+ review :
3
+ build :
4
+ context : .
5
+ volumes :
6
+ - .:/book
7
+ environment :
8
+ - REVIEW_CONFIG_FILE=config.yml
9
+ command : npm run pdf
You can’t perform that action at this time.
0 commit comments