diff --git a/deployment/docker/docker-compose.yaml b/deployment/docker/docker-compose.yaml index 941d9bc..1f34da1 100644 --- a/deployment/docker/docker-compose.yaml +++ b/deployment/docker/docker-compose.yaml @@ -94,7 +94,7 @@ services: condition: service_healthy env_file: stack.env hostname: knightcrawler-addon - image: gabisonfire/knightcrawler-addon:2.0.25 + image: gabisonfire/knightcrawler-addon:2.0.26 labels: logging: promtail networks: @@ -117,7 +117,7 @@ services: redis: condition: service_healthy env_file: stack.env - image: gabisonfire/knightcrawler-consumer:2.0.25 + image: gabisonfire/knightcrawler-consumer:2.0.26 labels: logging: promtail networks: @@ -138,7 +138,7 @@ services: redis: condition: service_healthy env_file: stack.env - image: gabisonfire/knightcrawler-debrid-collector:2.0.25 + image: gabisonfire/knightcrawler-debrid-collector:2.0.26 labels: logging: promtail networks: @@ -152,7 +152,7 @@ services: migrator: condition: service_completed_successfully env_file: stack.env - image: gabisonfire/knightcrawler-metadata:2.0.25 + image: gabisonfire/knightcrawler-metadata:2.0.26 networks: - knightcrawler-network restart: "no" @@ -163,7 +163,7 @@ services: postgres: condition: service_healthy env_file: stack.env - image: gabisonfire/knightcrawler-migrator:2.0.25 + image: gabisonfire/knightcrawler-migrator:2.0.26 networks: - knightcrawler-network restart: "no" @@ -182,7 +182,7 @@ services: redis: condition: service_healthy env_file: stack.env - image: gabisonfire/knightcrawler-producer:2.0.25 + image: gabisonfire/knightcrawler-producer:2.0.26 labels: logging: promtail networks: @@ -207,7 +207,7 @@ services: deploy: replicas: ${QBIT_REPLICAS:-0} env_file: stack.env - image: gabisonfire/knightcrawler-qbit-collector:2.0.25 + image: gabisonfire/knightcrawler-qbit-collector:2.0.26 labels: logging: promtail networks: diff --git a/deployment/docker/src/components/knightcrawler.yaml b/deployment/docker/src/components/knightcrawler.yaml index ee72bad..94c0d17 100644 --- a/deployment/docker/src/components/knightcrawler.yaml +++ b/deployment/docker/src/components/knightcrawler.yaml @@ -20,7 +20,7 @@ x-depends: &knightcrawler-app-depends services: metadata: - image: gabisonfire/knightcrawler-metadata:2.0.25 + image: gabisonfire/knightcrawler-metadata:2.0.26 env_file: ../../.env networks: - knightcrawler-network @@ -30,7 +30,7 @@ services: condition: service_completed_successfully migrator: - image: gabisonfire/knightcrawler-migrator:2.0.25 + image: gabisonfire/knightcrawler-migrator:2.0.26 env_file: ../../.env networks: - knightcrawler-network @@ -40,7 +40,7 @@ services: condition: service_healthy addon: - image: gabisonfire/knightcrawler-addon:2.0.25 + image: gabisonfire/knightcrawler-addon:2.0.26 <<: [*knightcrawler-app, *knightcrawler-app-depends] restart: unless-stopped hostname: knightcrawler-addon @@ -48,22 +48,22 @@ services: - "7000:7000" consumer: - image: gabisonfire/knightcrawler-consumer:2.0.25 + image: gabisonfire/knightcrawler-consumer:2.0.26 <<: [*knightcrawler-app, *knightcrawler-app-depends] restart: unless-stopped debridcollector: - image: gabisonfire/knightcrawler-debrid-collector:2.0.25 + image: gabisonfire/knightcrawler-debrid-collector:2.0.26 <<: [*knightcrawler-app, *knightcrawler-app-depends] restart: unless-stopped producer: - image: gabisonfire/knightcrawler-producer:2.0.25 + image: gabisonfire/knightcrawler-producer:2.0.26 <<: [*knightcrawler-app, *knightcrawler-app-depends] restart: unless-stopped qbitcollector: - image: gabisonfire/knightcrawler-qbit-collector:2.0.25 + image: gabisonfire/knightcrawler-qbit-collector:2.0.26 <<: [*knightcrawler-app, *knightcrawler-app-depends] restart: unless-stopped depends_on: diff --git a/src/debrid-collector/Dockerfile b/src/debrid-collector/Dockerfile index 50f04a0..768a90c 100644 --- a/src/debrid-collector/Dockerfile +++ b/src/debrid-collector/Dockerfile @@ -15,7 +15,7 @@ WORKDIR /app ENV PYTHONUNBUFFERED=1 -RUN apk add --update --no-cache python3=~3.11.8-r0 py3-pip && ln -sf python3 /usr/bin/python +RUN apk add --update --no-cache python3=~3.11.9-r0 py3-pip && ln -sf python3 /usr/bin/python COPY --from=build /src/out . diff --git a/src/producer/src/Dockerfile b/src/producer/src/Dockerfile index f91fd74..8cd5730 100644 --- a/src/producer/src/Dockerfile +++ b/src/producer/src/Dockerfile @@ -14,7 +14,7 @@ WORKDIR /app ENV PYTHONUNBUFFERED=1 -RUN apk add --update --no-cache python3=~3.11.8-r0 py3-pip && ln -sf python3 /usr/bin/python +RUN apk add --update --no-cache python3=~3.11.9-r0 py3-pip && ln -sf python3 /usr/bin/python COPY --from=build /src/out . diff --git a/src/qbit-collector/Dockerfile b/src/qbit-collector/Dockerfile index bb1fb62..e5d6fca 100644 --- a/src/qbit-collector/Dockerfile +++ b/src/qbit-collector/Dockerfile @@ -15,7 +15,7 @@ WORKDIR /app ENV PYTHONUNBUFFERED=1 -RUN apk add --update --no-cache python3=~3.11.8-r0 py3-pip && ln -sf python3 /usr/bin/python +RUN apk add --update --no-cache python3=~3.11.9-r0 py3-pip && ln -sf python3 /usr/bin/python COPY --from=build /src/out .