Add user info and move files around

This commit is contained in:
aditya.chandel
2025-03-11 19:28:47 -06:00
parent 9abdde2602
commit aabdc3f1fd
4 changed files with 30 additions and 14 deletions

View File

@@ -0,0 +1,23 @@
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