mirror of
https://github.com/booklore-app/booklore.git
synced 2026-02-18 00:17:53 +01:00
23 lines
510 B
YAML
23 lines
510 B
YAML
version: '3.8'
|
|
services:
|
|
booklore:
|
|
image: ghcr.io/adityachandelgit/booklore-app:${BOOKLORE_IMAGE_TAG}
|
|
container_name: booklore
|
|
env_file:
|
|
- .env
|
|
depends_on:
|
|
- mariadb
|
|
ports:
|
|
- "6060:6060"
|
|
volumes:
|
|
- ${BOOKLORE_DATA_PATH}:/app/data
|
|
- ${BOOKLORE_BOOKS_PATH}:/books
|
|
|
|
mariadb:
|
|
image: lscr.io/linuxserver/mariadb:11.4.5
|
|
container_name: mariadb
|
|
env_file:
|
|
- .env
|
|
volumes:
|
|
- ${MARIADB_CONFIG_PATH}:/config
|
|
restart: unless-stopped |