24 lines
418 B
YAML
24 lines
418 B
YAML
version: '3'
|
|
services:
|
|
solr:
|
|
image: my_fet_solr
|
|
build: ./solr_server
|
|
ports:
|
|
- "8980:8983"
|
|
volumes:
|
|
- data:/var/solr
|
|
command:
|
|
- solr-precreate
|
|
- core
|
|
- /opt/solr/server/solr/configsets/fetconfig
|
|
bot:
|
|
image: bot
|
|
build: .
|
|
environment:
|
|
TARGET: https://andis.2020.fet.at
|
|
SOLR_HOST: http://solr:8983
|
|
ports:
|
|
- "5000:5000"
|
|
volumes:
|
|
data:
|