We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 32d370d commit f71c428Copy full SHA for f71c428
docker-compose.yaml
@@ -1,11 +1,6 @@
1
services:
2
kroki:
3
image: yuzutech/kroki:0.24.1
4
- ports:
5
- - ${KROKI_PORT:-8125}:8000
6
- env_file:
7
- - path: .env
8
- required: true # default is true
9
10
scrape-and-plot:
11
build: .
@@ -16,6 +11,12 @@ services:
16
volumes:
17
12
- ${EBD_DOCX_FILE}:/container/ebd.docx
18
13
- ${OUTPUT_DIR}:/container/output
14
+ # we need to set the KROKI_HOST and KROKI_PORT to the host and port of the kroki service
15
+ # this is configurable here, but it does not need to be changed if the kroki service is named "kroki"
+ environment:
+ KROKI_PORT: "8000"
+ KROKI_HOST: "kroki"
19
+ # the .env file contains the parameter which the user can set
20
env_file:
21
- path: .env
22
+ required: true # default is true
0 commit comments