27 lines
635 B
Django/Jinja
27 lines
635 B
Django/Jinja
# {{ ansible_managed }}
|
|
version: '3.3'
|
|
services:
|
|
stirling-pdf:
|
|
container_name: stirling-pdf
|
|
image: frooodle/s-pdf
|
|
security_opt:
|
|
- no-new-privileges
|
|
environment:
|
|
- PUID=1000
|
|
- PGID=1000
|
|
- TZ=Asia/Singapore
|
|
- ALLOW_GOOGLE_VISIBILITY=false
|
|
# APP_LOCALE: en_GB
|
|
# APP_HOME_NAME: Stirling PDF
|
|
# APP_HOME_DESCRIPTION: Your locally hosted one-stop-shop for all your PDF needs.
|
|
# APP_NAVBAR_NAME: Stirling PDF
|
|
# APP_ROOT_PATH: /
|
|
restart: unless-stopped
|
|
ports:
|
|
- 8887:8080
|
|
networks:
|
|
- stirling-pdf
|
|
|
|
networks:
|
|
stirling-pdf:
|
|
name: stirling-pdf |