Skip to content

Commit 284e557

Browse files
committed
Fix WARNING: The PLONE_PATH variable is not set. Defaulting to a blank string.
1 parent 8b68ec2 commit 284e557

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

docker/docker-compose.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ services:
5656
- tmp:/tmp
5757
- vartmp:/var/tmp
5858
healthcheck:
59-
test: "curl -f localhost:8081/$PLONE_PATH/@@ok"
59+
test: "curl -f localhost:8081/$$PLONE_PATH/@@ok"
6060
labels:
6161
SERVICE_NAME: "instance1"
6262
instance2:
@@ -83,7 +83,7 @@ services:
8383
- tmp:/tmp
8484
- vartmp:/var/tmp
8585
healthcheck:
86-
test: "curl -f localhost:8081/$PLONE_PATH/@@ok"
86+
test: "curl -f localhost:8081/$$PLONE_PATH/@@ok"
8787
labels:
8888
SERVICE_NAME: "instance2"
8989
instance3:
@@ -107,7 +107,7 @@ services:
107107
- HOSTNAME=instance3
108108
- PLONE_PATH=demo/demo
109109
healthcheck:
110-
test: "curl -f localhost:8081/$PLONE_PATH/@@ok"
110+
test: "curl -f localhost:8081/$$PLONE_PATH/@@ok"
111111
volumes:
112112
- ../var/:/data
113113
- tmp:/tmp
@@ -140,7 +140,7 @@ services:
140140
- tmp:/tmp
141141
- vartmp:/var/tmp
142142
healthcheck:
143-
test: "curl -f localhost:8087/$PLONE_PATH/@@ok"
143+
test: "curl -f localhost:8087/$$PLONE_PATH/@@ok"
144144
labels:
145145
SERVICE_NAME: "worker-cron"
146146
restart:
@@ -163,7 +163,7 @@ services:
163163
- HOSTNAME=worker-async
164164
- PLONE_PATH=demo/demo
165165
healthcheck:
166-
test: "curl -f localhost:8089/$PLONE_PATH/@@ok"
166+
test: "curl -f localhost:8089/$$PLONE_PATH/@@ok"
167167
volumes:
168168
- ../var/:/data
169169
- tmp:/tmp
@@ -200,7 +200,7 @@ services:
200200
- MQ_PASSWORD
201201
- HOSTNAME=worker-amqp
202202
healthcheck:
203-
test: "curl -f localhost:8286/$PLONE_PATH/@@ok"
203+
test: "curl -f localhost:8286/$$PLONE_PATH/@@ok"
204204
volumes:
205205
- ../var/:/data
206206
- tmp:/tmp
@@ -209,7 +209,7 @@ services:
209209
SERVICE_NAME: "worker-cron"
210210
# restart:
211211
# unless-stopped
212-
maintainance:
212+
maintenance:
213213
image: imiobe/iadelib:latest
214214
entrypoint: bash
215215
ports:
@@ -227,16 +227,16 @@ services:
227227
- ADMIN_PASSWORD=tata
228228
- CLUSTER=iadelib_pm42
229229
- MOUNTPOINT=demo
230-
- HOSTNAME=maintainance
230+
- HOSTNAME=maintenance
231231
- PLONE_PATH=demo/demo
232232
healthcheck:
233-
test: "curl -f localhost:8080/$PLONE_PATH/@@ok"
233+
test: "curl -f localhost:8080/$$PLONE_PATH/@@ok"
234234
volumes:
235235
- ../var/:/data
236236
- tmp:/tmp
237237
- vartmp:/var/tmp
238238
labels:
239-
SERVICE_NAME: "maintainance"
239+
SERVICE_NAME: "maintenance"
240240
volumes:
241241
tmp:
242242
vartmp:

0 commit comments

Comments
 (0)