Skip to content

Commit 1cc619f

Browse files
⬆️(project) upgrade docker dependencies
| datasource | package | from | to | | ---------- | ---------------------------- | ----------- | ----------- | | docker | clickhouse/clickhouse-server | 23.1.1.3077 | 24.5.1.1763 | | docker | elasticsearch | 8.1.0 | 8.13.4 | | docker | mongo | 5.0.9 | 7.0.11 | | docker | python | 3.12.0 | 3.12.3 |
1 parent 6080eb8 commit 1cc619f

3 files changed

Lines changed: 7 additions & 7 deletions

File tree

.circleci/config.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -194,18 +194,18 @@ jobs:
194194
password: $DOCKER_HUB_PASSWORD
195195
environment:
196196
RALPH_APP_DIR: ~/fun/.ralph
197-
- image: elasticsearch:8.1.0
197+
- image: elasticsearch:8.13.4
198198
auth:
199199
username: $DOCKER_HUB_USER
200200
password: $DOCKER_HUB_PASSWORD
201201
environment:
202202
discovery.type: single-node
203203
xpack.security.enabled: "false"
204-
- image: mongo:5.0.9
204+
- image: mongo:7.0.11
205205
auth:
206206
username: $DOCKER_HUB_USER
207207
password: $DOCKER_HUB_PASSWORD
208-
- image: clickhouse/clickhouse-server:23.1.1.3077-alpine
208+
- image: clickhouse/clickhouse-server:24.5.1.1763-alpine
209209
auth:
210210
username: $DOCKER_HUB_USER
211211
password: $DOCKER_HUB_PASSWORD

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -- Base image --
2-
FROM python:3.12.0-slim as base
2+
FROM python:3.12.3-slim as base
33

44
# Upgrade pip to its latest release to speed up dependencies installation
55
RUN pip install --upgrade pip

docker-compose.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ services:
2323

2424
# -- backends
2525
elasticsearch:
26-
image: elasticsearch:8.1.0
26+
image: elasticsearch:8.13.4
2727
environment:
2828
bootstrap.memory_lock: true
2929
discovery.type: single-node
@@ -41,7 +41,7 @@ services:
4141
retries: 60
4242

4343
mongo:
44-
image: mongo:5.0.9
44+
image: mongo:7.0.11
4545
ports:
4646
- "27017:27017"
4747
healthcheck:
@@ -50,7 +50,7 @@ services:
5050
retries: 60
5151

5252
clickhouse:
53-
image: clickhouse/clickhouse-server:23.1.1.3077-alpine
53+
image: clickhouse/clickhouse-server:24.5.1.1763-alpine
5454
environment:
5555
CLICKHOUSE_DB: xapi
5656
CLICKHOUSE_DEFAULT_ACCESS_MANAGEMENT: 1

0 commit comments

Comments
 (0)