Skip to content

Commit

Permalink
⬆️(project) upgrade docker dependencies
Browse files Browse the repository at this point in the history
| 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      |
  • Loading branch information
renovate[bot] authored and quitterie-lcs committed Jun 3, 2024
1 parent 6080eb8 commit ecebca5
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -194,18 +194,18 @@ jobs:
password: $DOCKER_HUB_PASSWORD
environment:
RALPH_APP_DIR: ~/fun/.ralph
- image: elasticsearch:8.1.0
- image: elasticsearch:8.13.4
auth:
username: $DOCKER_HUB_USER
password: $DOCKER_HUB_PASSWORD
environment:
discovery.type: single-node
xpack.security.enabled: "false"
- image: mongo:5.0.9
- image: mongo:7.0.11
auth:
username: $DOCKER_HUB_USER
password: $DOCKER_HUB_PASSWORD
- image: clickhouse/clickhouse-server:23.1.1.3077-alpine
- image: clickhouse/clickhouse-server:24.5.1.1763-alpine
auth:
username: $DOCKER_HUB_USER
password: $DOCKER_HUB_PASSWORD
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# -- Base image --
FROM python:3.12.0-slim as base
FROM python:3.12.3-slim as base

# Upgrade pip to its latest release to speed up dependencies installation
RUN pip install --upgrade pip
Expand Down
6 changes: 3 additions & 3 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ services:

# -- backends
elasticsearch:
image: elasticsearch:8.1.0
image: elasticsearch:8.13.4
environment:
bootstrap.memory_lock: true
discovery.type: single-node
Expand All @@ -41,7 +41,7 @@ services:
retries: 60

mongo:
image: mongo:5.0.9
image: mongo:7.0.11
ports:
- "27017:27017"
healthcheck:
Expand All @@ -50,7 +50,7 @@ services:
retries: 60

clickhouse:
image: clickhouse/clickhouse-server:23.1.1.3077-alpine
image: clickhouse/clickhouse-server:24.5.1.1763-alpine
environment:
CLICKHOUSE_DB: xapi
CLICKHOUSE_DEFAULT_ACCESS_MANAGEMENT: 1
Expand Down

0 comments on commit ecebca5

Please sign in to comment.