fix health check
This commit is contained in:
parent
cca66b7833
commit
ad8f032285
|
|
@ -13,8 +13,11 @@ services:
|
||||||
|
|
||||||
# Python Dependencies installieren und Worker starten
|
# Python Dependencies installieren und Worker starten
|
||||||
command: >
|
command: >
|
||||||
sh -c "pip install --no-cache-dir boto3 &&
|
sh -c "apt-get update &&
|
||||||
python -u worker.py"
|
apt-get install -y --no-install-recommends procps &&
|
||||||
|
rm -rf /var/lib/apt/lists/* &&
|
||||||
|
pip install --no-cache-dir boto3 &&
|
||||||
|
python -u worker.py"
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
# ⚠️ WICHTIG: WORKER_DOMAIN muss von außen gesetzt werden!
|
# ⚠️ WICHTIG: WORKER_DOMAIN muss von außen gesetzt werden!
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue