16 lines
372 B
YAML
16 lines
372 B
YAML
version: '3.2'
|
|
# redis for arm7
|
|
services:
|
|
|
|
basex:
|
|
image: "quodatum/basexhttp:latest"
|
|
container_name: basex-test
|
|
command: /srv/basex/bin/basexhttp
|
|
ports:
|
|
- 8984:8984
|
|
restart: unless-stopped
|
|
volumes:
|
|
- ./data:/srv/basex/data
|
|
- ./webapp:/srv/basex/webapp
|
|
- ./repo:/srv/basex/repo
|
|
- ./custom:/srv/basex/lib/custom |