-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdocker-compose.yml
51 lines (51 loc) · 1.17 KB
/
docker-compose.yml
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
41
42
43
44
45
46
47
48
49
50
51
version: '2.4'
services:
caselist-api:
image: caselist-api:latest
build:
context: ./server
container_name: caselist-api
restart: always
ports:
- 5834:5834
volumes:
- /net/configs/caselist/server/production.env:/api/.env
- /var/www/caselist:/api/uploads
- /var/log/caselist:/api/logs
caselist-swagger:
image: swaggerapi/swagger-ui
container_name: caselist-swagger
restart: always
ports:
- 5835:8080
environment:
URL: https://api.opencaselist.com/v1/docs
caselist-client:
image: caselist-client:latest
build:
context: ./client
container_name: caselist-client
restart: always
ports:
- 5836:5836
volumes:
- /net/configs/caselist/client/production.env:/app/.env.production
solr:
image: solr:latest
container_name: solr
restart: always
ports:
- 8983:8983
environment:
- SOLR_JAVA_MEM="-Xms1g -Xmx1g"
volumes:
- ${SOLR_DIR:-/var/solr}:/var/solr
command:
- solr-precreate
- caselist
tika:
image: apache/tika:latest
container_name: tika
restart: always
ports:
- 9998:9998