<type>(scope): <description>

[body]

[footer(s)]
This commit is contained in:
ITQ
2025-03-02 03:00:43 +03:00
parent 82535be86b
commit 2af150493b
3 changed files with 16 additions and 1 deletions
+5 -1
View File
@@ -88,7 +88,7 @@ services:
image: gitlab.prodcontest.ru:5050/team-15/project/backend:latest
build:
context: ./services/backend
command: celery -A config worker -l INFO
entrypoint: ["/scripts/celery-worker-entrypoint.sh"]
depends_on:
redis:
restart: false
@@ -106,6 +106,10 @@ services:
retries: 3
start_period: 10s
start_interval: 2s
volumes:
- type: bind
source: ./infrastructure/backend/scripts
target: /scripts
restart: unless-stopped
celery-exporter:
@@ -0,0 +1,9 @@
#!/bin/sh
set -e
echo "Installing required libs..."
pip install -r checker_requirements.txt
echo "Starting Celery worker..."
celery -A config worker -l INFO
+2
View File
@@ -24,4 +24,6 @@ FROM docker.io/nginx:latest
COPY --from=builder /app/static /usr/share/nginx/html
COPY checker_requirements.txt /usr/share/nginx/html
CMD ["nginx", "-g", "daemon off;"]