forked from uniba-ub/dspace-odata
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
33 lines (30 loc) · 1020 Bytes
/
docker-compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
---
version: '3.6'
# To use traefik.io as reverse proxy uncomment this to connect to traefik:
#networks:
# net-proxy:
# external: true
# name: net-proxy
services:
odata:
# build:
# context: ./
# dockerfile: Dockerfile
image: ${CI_REGISTRY_IMAGE:-docker-registry.rz.uni-bamberg.de/itfl-service/hydra/odata:latest}
environment:
CATALINA_OPTS: "-Dorg.apache.el.parser.SKIP_IDENTIFIER_CHECK=true -Xmx2048m -Xms2048m -XX:MaxPermSize=512m"
SOLR_URL: "https://fis.uni-bamberg.de/solr/search"
ports:
- "8080:8080"
# To use traefik.io as reverse proxy uncomment this and set IMAGE NAME and URL as env vars:
# networks:
# net-proxy:
# labels:
# traefik.enable: "true"
# traefik.docker.network: "net-proxy"
# traefik.backend: "$NAME"
# traefik.port: "8080"
# traefik.frontend.rule: "Host:$URL"
# traefik.frontend.entryPoints: "http"
# traefik.frontend.passHostHeader: "true"
# traefik.backend.loadbalancer.stickiness: "true"