18 lines
380 B
YAML
18 lines
380 B
YAML
services:
|
|
bentopdf:
|
|
image: bentopdfteam/bentopdf-simple:latest
|
|
container_name: bentopdf
|
|
ports:
|
|
- "${CADDY_PORT:?"Caddy Port"}:8080"
|
|
volumes:
|
|
- ./configs:/configs
|
|
- ./data:/app/data
|
|
env_file:
|
|
- .env
|
|
environment:
|
|
- PUID=1000
|
|
- PGID=1000
|
|
- APP_PORT=8080
|
|
- SECRET_KEY=${SECRET_KEY}
|
|
restart: unless-stopped
|