Projekt

Obecné

Profil

Stáhnout (497 Bajtů) Statistiky
| Větev: | Tag: | Revize:
1
version: '3'
2
services:
3

    
4
  fulltextsearch-solr:
5
    image: "solr:8.4.1-slim"
6
    container_name: fulltextsearch-solr
7
    ports:
8
      - 8983:8983
9

    
10
  fulltextsearch-backend:
11
    build:
12
      ./be/fulltextsearch
13
    container_name: fulltextsearch-backend
14
    ports:
15
      - 8080:8080
16
    links:
17
      - fulltextsearch-solr
18

    
19
  fulltextsearch-fronted:
20
    build:
21
      ./fe/fulltextsearch
22
    container_name: fulltextsearch-frontend
23
    ports:
24
      - 4200:80
25
    links:
26
      - fulltextsearch-backend
(3-3/3)