mirror of
https://github.com/booklore-app/booklore.git
synced 2026-02-18 00:17:53 +01:00
Add user info and move files around
This commit is contained in:
23
example-docker/docker-compose.yml
Normal file
23
example-docker/docker-compose.yml
Normal 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
|
||||
Reference in New Issue
Block a user