Please ⭐ this repo if you find it useful
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 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 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"