[add] basex

This commit is contained in:
Andy Bunce 2022-05-10 23:07:54 +01:00
parent 69c563ab3f
commit 92954c5f8d
5 changed files with 47 additions and 0 deletions

8
basex/custom/.gitignore vendored Normal file
View File

@ -0,0 +1,8 @@
# .gitignore sample
###################
# Ignore all files in this dir...
*
# ... except for this one.
!.gitignore

8
basex/data/.gitignore vendored Normal file
View File

@ -0,0 +1,8 @@
# .gitignore sample
###################
# Ignore all files in this dir...
*
# ... except for this one.
!.gitignore

15
basex/docker-compose.yml Normal file
View File

@ -0,0 +1,15 @@
version: '3.2'
# redis for arm7
services:
basex:
image: "quodatum/basexhttp:latest"
container_name: basex-test
ports:
- '8984:8984 '
restart: unless-stopped
volumes:
- ./data:/srv/basex/data
- ./webapp:/srv/basex/webapp
- ./repo:/srv/basex/repo
- ./custom:/srv/basex/lib/custom

8
basex/repo/.gitignore vendored Normal file
View File

@ -0,0 +1,8 @@
# .gitignore sample
###################
# Ignore all files in this dir...
*
# ... except for this one.
!.gitignore

8
basex/webapp/.gitignore vendored Normal file
View File

@ -0,0 +1,8 @@
# .gitignore sample
###################
# Ignore all files in this dir...
*
# ... except for this one.
!.gitignore