Skip to content
This repository was archived by the owner on Jun 1, 2026. It is now read-only.

Commit 5a632aa

Browse files
committed
Update docker compose
1 parent 7183809 commit 5a632aa

2 files changed

Lines changed: 8 additions & 7 deletions

File tree

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# syntax=docker/dockerfile:1
2-
FROM lukemathwalker/cargo-chef:latest-rust-1.94.1-bookworm AS chef
2+
FROM lukemathwalker/cargo-chef:latest-rust-1.95.0-trixie AS chef
33
WORKDIR /app
44
ENV CARGO_INCREMENTAL=0
55

@@ -22,7 +22,7 @@ COPY . .
2222
RUN cargo build --release --package dynode && cp target/release/dynode /app/
2323

2424
# Shared runtime base
25-
FROM debian:bookworm-slim AS runtime-base
25+
FROM debian:trixie-slim AS runtime-base
2626
ENV DEBIAN_FRONTEND=noninteractive
2727
RUN apt-get update && apt-get install -y --no-install-recommends openssl ca-certificates && rm -rf /var/lib/apt/lists/*
2828

docker-compose.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,8 @@ services:
4545
container_name: dynode
4646
build:
4747
context: .
48-
dockerfile: dynode.Dockerfile
48+
dockerfile: Dockerfile
49+
target: dynode
4950
environment:
5051
ADDRESS: 0.0.0.0
5152
PORT: 8002
@@ -102,14 +103,14 @@ services:
102103
dynode_internal: {}
103104

104105
redis:
105-
image: redis:7.0-alpine
106+
image: redis:8.6.3-alpine
106107
container_name: redis
107108
restart: always
108109
ports:
109110
- 6379:6379
110111

111112
postgres:
112-
image: postgres:latest
113+
image: postgres:18.4-trixie
113114
container_name: postgres
114115
ports:
115116
- 5432:5432
@@ -120,7 +121,7 @@ services:
120121
POSTGRES_DB: api
121122

122123
rabbitmq:
123-
image: rabbitmq:4-management
124+
image: rabbitmq:4.3.0-management
124125
container_name: rabbitmq
125126
restart: unless-stopped
126127
ports:
@@ -131,7 +132,7 @@ services:
131132
RABBITMQ_DEFAULT_PASS: password
132133

133134
meilisearch:
134-
image: getmeili/meilisearch:v1.21.0
135+
image: getmeili/meilisearch:v1.44.0
135136
container_name: meilisearch
136137
restart: always
137138
ports:

0 commit comments

Comments
 (0)