Skip to content

Commit 9b5f454

Browse files
authored
Python version bump in alpine (#209)
1 parent ad9549c commit 9b5f454

File tree

5 files changed

+17
-17
lines changed

5 files changed

+17
-17
lines changed

deployment/docker/docker-compose.yaml

+7-7
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ services:
9494
condition: service_healthy
9595
env_file: stack.env
9696
hostname: knightcrawler-addon
97-
image: gabisonfire/knightcrawler-addon:2.0.25
97+
image: gabisonfire/knightcrawler-addon:2.0.26
9898
labels:
9999
logging: promtail
100100
networks:
@@ -117,7 +117,7 @@ services:
117117
redis:
118118
condition: service_healthy
119119
env_file: stack.env
120-
image: gabisonfire/knightcrawler-consumer:2.0.25
120+
image: gabisonfire/knightcrawler-consumer:2.0.26
121121
labels:
122122
logging: promtail
123123
networks:
@@ -138,7 +138,7 @@ services:
138138
redis:
139139
condition: service_healthy
140140
env_file: stack.env
141-
image: gabisonfire/knightcrawler-debrid-collector:2.0.25
141+
image: gabisonfire/knightcrawler-debrid-collector:2.0.26
142142
labels:
143143
logging: promtail
144144
networks:
@@ -152,7 +152,7 @@ services:
152152
migrator:
153153
condition: service_completed_successfully
154154
env_file: stack.env
155-
image: gabisonfire/knightcrawler-metadata:2.0.25
155+
image: gabisonfire/knightcrawler-metadata:2.0.26
156156
networks:
157157
- knightcrawler-network
158158
restart: "no"
@@ -163,7 +163,7 @@ services:
163163
postgres:
164164
condition: service_healthy
165165
env_file: stack.env
166-
image: gabisonfire/knightcrawler-migrator:2.0.25
166+
image: gabisonfire/knightcrawler-migrator:2.0.26
167167
networks:
168168
- knightcrawler-network
169169
restart: "no"
@@ -182,7 +182,7 @@ services:
182182
redis:
183183
condition: service_healthy
184184
env_file: stack.env
185-
image: gabisonfire/knightcrawler-producer:2.0.25
185+
image: gabisonfire/knightcrawler-producer:2.0.26
186186
labels:
187187
logging: promtail
188188
networks:
@@ -207,7 +207,7 @@ services:
207207
deploy:
208208
replicas: ${QBIT_REPLICAS:-0}
209209
env_file: stack.env
210-
image: gabisonfire/knightcrawler-qbit-collector:2.0.25
210+
image: gabisonfire/knightcrawler-qbit-collector:2.0.26
211211
labels:
212212
logging: promtail
213213
networks:

deployment/docker/src/components/knightcrawler.yaml

+7-7
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ x-depends: &knightcrawler-app-depends
2020

2121
services:
2222
metadata:
23-
image: gabisonfire/knightcrawler-metadata:2.0.25
23+
image: gabisonfire/knightcrawler-metadata:2.0.26
2424
env_file: ../../.env
2525
networks:
2626
- knightcrawler-network
@@ -30,7 +30,7 @@ services:
3030
condition: service_completed_successfully
3131

3232
migrator:
33-
image: gabisonfire/knightcrawler-migrator:2.0.25
33+
image: gabisonfire/knightcrawler-migrator:2.0.26
3434
env_file: ../../.env
3535
networks:
3636
- knightcrawler-network
@@ -40,30 +40,30 @@ services:
4040
condition: service_healthy
4141

4242
addon:
43-
image: gabisonfire/knightcrawler-addon:2.0.25
43+
image: gabisonfire/knightcrawler-addon:2.0.26
4444
<<: [*knightcrawler-app, *knightcrawler-app-depends]
4545
restart: unless-stopped
4646
hostname: knightcrawler-addon
4747
ports:
4848
- "7000:7000"
4949

5050
consumer:
51-
image: gabisonfire/knightcrawler-consumer:2.0.25
51+
image: gabisonfire/knightcrawler-consumer:2.0.26
5252
<<: [*knightcrawler-app, *knightcrawler-app-depends]
5353
restart: unless-stopped
5454

5555
debridcollector:
56-
image: gabisonfire/knightcrawler-debrid-collector:2.0.25
56+
image: gabisonfire/knightcrawler-debrid-collector:2.0.26
5757
<<: [*knightcrawler-app, *knightcrawler-app-depends]
5858
restart: unless-stopped
5959

6060
producer:
61-
image: gabisonfire/knightcrawler-producer:2.0.25
61+
image: gabisonfire/knightcrawler-producer:2.0.26
6262
<<: [*knightcrawler-app, *knightcrawler-app-depends]
6363
restart: unless-stopped
6464

6565
qbitcollector:
66-
image: gabisonfire/knightcrawler-qbit-collector:2.0.25
66+
image: gabisonfire/knightcrawler-qbit-collector:2.0.26
6767
<<: [*knightcrawler-app, *knightcrawler-app-depends]
6868
restart: unless-stopped
6969
depends_on:

src/debrid-collector/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ WORKDIR /app
1515

1616
ENV PYTHONUNBUFFERED=1
1717

18-
RUN apk add --update --no-cache python3=~3.11.8-r0 py3-pip && ln -sf python3 /usr/bin/python
18+
RUN apk add --update --no-cache python3=~3.11.9-r0 py3-pip && ln -sf python3 /usr/bin/python
1919

2020
COPY --from=build /src/out .
2121

src/producer/src/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ WORKDIR /app
1414

1515
ENV PYTHONUNBUFFERED=1
1616

17-
RUN apk add --update --no-cache python3=~3.11.8-r0 py3-pip && ln -sf python3 /usr/bin/python
17+
RUN apk add --update --no-cache python3=~3.11.9-r0 py3-pip && ln -sf python3 /usr/bin/python
1818

1919
COPY --from=build /src/out .
2020

src/qbit-collector/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ WORKDIR /app
1515

1616
ENV PYTHONUNBUFFERED=1
1717

18-
RUN apk add --update --no-cache python3=~3.11.8-r0 py3-pip && ln -sf python3 /usr/bin/python
18+
RUN apk add --update --no-cache python3=~3.11.9-r0 py3-pip && ln -sf python3 /usr/bin/python
1919

2020
COPY --from=build /src/out .
2121

0 commit comments

Comments
 (0)