1
|
version: '3'
|
2
|
services:
|
3
|
|
4
|
fulltextsearch-solr:
|
5
|
image: solr
|
6
|
container_name: fulltextsearch-solr
|
7
|
ports:
|
8
|
- 8983:8983
|
9
|
volumes:
|
10
|
- ./solr/core-configs/documents:/var/solr/data/documents
|
11
|
- ./solr/core-configs/files:/var/solr/data/files
|
12
|
|
13
|
fulltextsearch-backend:
|
14
|
build:
|
15
|
./be/fulltextsearch
|
16
|
image: ondrejvane/fulltextsearch-backend:0.0.5
|
17
|
container_name: fulltextsearch-backend
|
18
|
ports:
|
19
|
- 8080:8080
|
20
|
links:
|
21
|
- fulltextsearch-solr
|
22
|
|
23
|
fulltextsearch-fronted:
|
24
|
build:
|
25
|
./fe/fulltextsearch
|
26
|
image: ondrejvane/fulltextsearch-frontend:0.0.5
|
27
|
container_name: fulltextsearch-frontend
|
28
|
ports:
|
29
|
- 80:80
|
30
|
links:
|
31
|
- fulltextsearch-backend
|