Gotenberg-ui
October 21, 2021 ยท View on GitHub
Please :star: this repo if you find it useful
Gotenberg-ui
Gotenberg-ui is FastAPI based web application allowing us to to convert documents, html pages and url to pdf documents and even merge multiple pdf files to single PDF. Actualy Gotenberg-ui is UI Wrapper of Gotenberg wich is "Docker-powered stateless API for PDF files" written in GO Lang.
Gotenberg-ui Features:
Convert URL to pdf file
Convert HTML file to pdf file
Convert Documents to pdf file
Merge multiple pdf documents to single file
Installation
Gotenberg Installation
Gotenberg installation is very easy using docker-compose:
version: "3.7"
services:
gotenberg:
image: thecodingmachine/gotenberg:latest
container_name: gotenberg
restart: always
ports:
- "3000:3000"
Gotenberg UI Installation
Gotenberg UI installation is very easy using docker-compose:
version: "3.7"
services:
gotenbergui:
image: techblog/gotenbergui
container_name: gotenbergui
restart: always
environment:
- GOTENBERG_API_ADDRESS=[Address and port of gotenberg docker]
ports:
- "8080:8080"



