[go: up one dir, main page]

Skip to content

t0mer/gotenberg-ui

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

24 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Please ⭐ this repo if you find it useful


PayPal

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 URL

Convert HTML file to pdf file

Convert HTML file

Convert Documents to pdf file

Convert Documents

Merge multiple pdf documents to single file

Merge Documents

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"

Components and Libraries used in DeCompose