1234567891011121314151617181920212223 |
- version: "3.5"
- services:
- basex:
- build: ./Docker/basex/
- ports:
- - 1984:1984
- - 8984:8984
- volumes:
- - "${DATA_ROOT}:/srv/basex/data"
- - "${SYNOPSX_ROOT}:/srv/basex/webapp/synopsx"
- # - "${LOG_ROOT}:/var/log:rw"
- nginx:
- build: ./Docker/nginx/
- ports:
- - 8990:80
- volumes:
- - "${CLIENT_ROOT}:/var/www/html"
- - "${LOG_ROOT}:/var/log:rw"
- working_dir: "/var/www/html/"
- depends_on:
- - basex
|