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