[add] basex
This commit is contained in:
parent
69c563ab3f
commit
92954c5f8d
5 changed files with 47 additions and 0 deletions
8
basex/custom/.gitignore
vendored
Normal file
8
basex/custom/.gitignore
vendored
Normal 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
8
basex/data/.gitignore
vendored
Normal 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
15
basex/docker-compose.yml
Normal 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
8
basex/repo/.gitignore
vendored
Normal 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
8
basex/webapp/.gitignore
vendored
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
# .gitignore sample
|
||||||
|
###################
|
||||||
|
|
||||||
|
# Ignore all files in this dir...
|
||||||
|
*
|
||||||
|
|
||||||
|
# ... except for this one.
|
||||||
|
!.gitignore
|
Loading…
Add table
Reference in a new issue