-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose-ci.yml
More file actions
40 lines (34 loc) · 979 Bytes
/
docker-compose-ci.yml
File metadata and controls
40 lines (34 loc) · 979 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
---
name: kitconcept-solr-ci
# This file is used to define the CI environment for kitconcept-solr.
# It is supposed to be used in conjunction with docker-compose-dev.yml.
# The services defined here are used for CI testing and should not be used in development.
services:
tika-acceptance:
image: apache/tika:3.2.3.0-full
profiles: ["ci"]
ports:
- 9998:9998
solr-acceptance:
build:
context: ./solr
profiles: ["ci"]
depends_on:
- tika-acceptance
ports:
- 8983:8983
command:
- solr-precreate
- plone
- /plone-config
environment:
SOLR_MODULES: extraction
SOLR_OPTS: "-Dsolr.tika.url=http://tika-acceptance:9998"
frontend-acceptance:
image: ghcr.io/kitconcept/kitconcept-solr-frontend:${BASE_TAG}
pull_policy: always
profiles: ["ci"]
backend-acceptance:
image: ghcr.io/kitconcept/kitconcept-solr-acceptance:${BASE_TAG}
pull_policy: always
profiles: ["ci"]