mirror of
https://github.com/gotenberg/gotenberg.git
synced 2026-08-12 10:22:14 +01:00
18 lines
306 B
Markdown
18 lines
306 B
Markdown
---
|
|
title: Fonts
|
|
---
|
|
|
|
By default, a handful of fonts are installed. Asian characters are also supported out of the box.
|
|
|
|
If you wish to use more fonts, you will have to create your own image:
|
|
|
|
```Dockerfile
|
|
FROM thecodingmachine/gotenberg:6
|
|
|
|
USER root
|
|
|
|
RUN apt-get -y install yourfonts
|
|
|
|
USER gotenberg
|
|
```
|