From 92954c5f8dab72949f6c4d3e8c9c737bc6afcc06 Mon Sep 17 00:00:00 2001 From: Andy Bunce Date: Tue, 10 May 2022 23:07:54 +0100 Subject: [PATCH] [add] basex --- basex/custom/.gitignore | 8 ++++++++ basex/data/.gitignore | 8 ++++++++ basex/docker-compose.yml | 15 +++++++++++++++ basex/repo/.gitignore | 8 ++++++++ basex/webapp/.gitignore | 8 ++++++++ 5 files changed, 47 insertions(+) create mode 100644 basex/custom/.gitignore create mode 100644 basex/data/.gitignore create mode 100644 basex/docker-compose.yml create mode 100644 basex/repo/.gitignore create mode 100644 basex/webapp/.gitignore diff --git a/basex/custom/.gitignore b/basex/custom/.gitignore new file mode 100644 index 0000000..1e04ba0 --- /dev/null +++ b/basex/custom/.gitignore @@ -0,0 +1,8 @@ +# .gitignore sample +################### + +# Ignore all files in this dir... +* + +# ... except for this one. +!.gitignore diff --git a/basex/data/.gitignore b/basex/data/.gitignore new file mode 100644 index 0000000..1e04ba0 --- /dev/null +++ b/basex/data/.gitignore @@ -0,0 +1,8 @@ +# .gitignore sample +################### + +# Ignore all files in this dir... +* + +# ... except for this one. +!.gitignore diff --git a/basex/docker-compose.yml b/basex/docker-compose.yml new file mode 100644 index 0000000..8cc0806 --- /dev/null +++ b/basex/docker-compose.yml @@ -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 \ No newline at end of file diff --git a/basex/repo/.gitignore b/basex/repo/.gitignore new file mode 100644 index 0000000..1e04ba0 --- /dev/null +++ b/basex/repo/.gitignore @@ -0,0 +1,8 @@ +# .gitignore sample +################### + +# Ignore all files in this dir... +* + +# ... except for this one. +!.gitignore diff --git a/basex/webapp/.gitignore b/basex/webapp/.gitignore new file mode 100644 index 0000000..1e04ba0 --- /dev/null +++ b/basex/webapp/.gitignore @@ -0,0 +1,8 @@ +# .gitignore sample +################### + +# Ignore all files in this dir... +* + +# ... except for this one. +!.gitignore