Library App for displaying RPG PDFs
318
Displays various folders in a simple web interface for download. Optimized for PDFs of RPG maps.
Example docker-compose.yml:
services:
db:
image: mariadb
healthcheck:
test: ["CMD", "healthcheck.sh", "--connect", "--innodb_initialized"]
start_period: 5s
interval: 5s
timeout: 5s
retries: 3
environment:
MARIADB_ALLOW_EMPTY_ROOT_PASSWORD: true
MARIADB_DATABASE: cartographer
web:
image: neon725/cartographer
restart: on-failure
depends_on:
db:
condition: service_healthy
restart: true
environment:
SPRING_DATASOURCE_URL: jdbc:mariadb://db:3306/cartographer
SPRING_DATASOURCE_USERNAME: root
SPRING_DATASOURCE_PASSWORD:
ADMIN_PASSWORD: exampleloginpassword
SPRING_MVC_SERVLET_PATH: /cartographer
ports:
- 8080:8080
volumes:
- /mnt/Tabletops:/mnt/Tabletops
Content type
Image
Digest
sha256:fdd4db4f5…
Size
239.9 MB
Last updated
over 1 year ago
docker pull neon725/cartographer