27 lines
626 B
Plaintext
27 lines
626 B
Plaintext
|
# {{ 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:
|
||
|
- IPv4
|
||
|
networks:
|
||
|
IPv4:
|
||
|
external:
|
||
|
name: IPv4
|