aswi2020anonymous-gitlab/docker-compose.yml @ bf3b4d3b
1 | 26d50cc1 | Ondřej Váně | version: '3' |
---|---|---|---|
2 | services: |
||
3 | |||
4 | 2c424c7d | Ondřej Váně | fulltextsearch-solr: |
5 | 7460ae47 | Ondřej Váně | image: solr |
6 | 2c424c7d | Ondřej Váně | container_name: fulltextsearch-solr |
7 | ports: |
||
8 | - 8983:8983 |
||
9 | |||
10 | 26d50cc1 | Ondřej Váně | fulltextsearch-backend: |
11 | build: |
||
12 | ./be/fulltextsearch
|
||
13 | 0ceed843 | Ondřej Váně | image: ondrejvane/fulltextsearch-backend:0.0.2 |
14 | 26d50cc1 | Ondřej Váně | container_name: fulltextsearch-backend |
15 | ports: |
||
16 | - 8080:8080 |
||
17 | 2c424c7d | Ondřej Váně | links: |
18 | - fulltextsearch-solr |
||
19 | 26d50cc1 | Ondřej Váně | |
20 | fulltextsearch-fronted: |
||
21 | build: |
||
22 | ./fe/fulltextsearch
|
||
23 | 0ceed843 | Ondřej Váně | image: ondrejvane/fulltextsearch-frontend:0.0.2 |
24 | 26d50cc1 | Ondřej Váně | container_name: fulltextsearch-frontend |
25 | ports: |
||
26 | - 4200:80 |
||
27 | links: |
||
28 | - fulltextsearch-backend |