first test

This commit is contained in:
2026-05-03 02:36:53 +02:00
commit a43810ed71
12 changed files with 40 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
### Example user template template
### Example user template
# IntelliJ project files
.idea
*.iml
out
gen
+12
View File
@@ -0,0 +1,12 @@
# Default ignored files
/shelf/
/workspace.xml
# Editor-based HTTP Client requests
/httpRequests/
# Ignored default folder with query files
/queries/
# Datasource local storage ignored files
/dataSources/
/dataSources.local.xml
# Zeppelin ignored files
/ZeppelinRemoteNotebooks/
View File
View File
View File
View File
View File
View File
View File
+5
View File
@@ -0,0 +1,5 @@
stack: bento-pdf
compose:
- docker-compose.yml
env:
file: .env
View File
+15
View File
@@ -0,0 +1,15 @@
services:
bentopdf:
image: bentopdfteam/bentopdf-simple:latest
container_name: bentopdf
ports:
- "3002:8080"
volumes:
- ./configs:/configs
- ./data:/app/data
environment:
- PUID=1000
- PGID=1000
- APP_PORT=8080
- SECRET_KEY=${SECRET_KEY}
restart: unless-stopped