mirror of
https://github.com/Dokploy/templates.git
synced 2026-06-15 20:25:24 +02:00
19 lines
677 B
YAML
19 lines
677 B
YAML
services:
|
|
gotenberg:
|
|
image: gotenberg/gotenberg:latest
|
|
environment:
|
|
# NOTE: requires the --api-enable-basic-auth option in "command"
|
|
# make sure to also change the credentials in Dokploy environment
|
|
GOTENBERG_API_BASIC_AUTH_USERNAME: ${GOTENBERG_API_BASIC_AUTH_USERNAME}
|
|
GOTENBERG_API_BASIC_AUTH_PASSWORD: ${GOTENBERG_API_BASIC_AUTH_PASSWORD}
|
|
command:
|
|
- gotenberg
|
|
# See the full list of options at https://gotenberg.dev/docs/configuration
|
|
|
|
# Examples:
|
|
# - --api-timeout=60s
|
|
# - --chromium-auto-start
|
|
- --api-enable-basic-auth
|
|
- --api-disable-health-check-logging
|
|
restart: unless-stopped
|