Add docker-compose configuration for openbooks service

This commit is contained in:
2025-11-21 19:18:33 -05:00
parent aa429e2461
commit fef047ebac

View File

@@ -0,0 +1,16 @@
version: '3.3'
services:
openbooks:
ports:
- '8080:80'
volumes:
- 'booksVolume:/books'
restart: unless-stopped
container_name: OpenBooks
command: --name prodigious --persist
environment:
- BASE_PATH=/openbooks/
image: evanbuss/openbooks:latest
volumes:
booksVolume: