Skip to content

Commit 4c5d63a

Browse files
authored
chore: bump Node 18 -> 20 (#567)
1 parent 1bcce2c commit 4c5d63a

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:18.19-alpine AS base
1+
FROM node:20-alpine AS base
22

33
# Install tini & build dependencies
44
RUN apk add --no-cache tini && \

docker-compose.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,15 @@ services:
1616
cpus: "2"
1717
memory: 2G
1818

19+
redis:
20+
container_name: redis
21+
image: redis:latest
22+
restart: always
23+
ports:
24+
- 6379:6379
25+
volumes:
26+
- redis_data:/data
27+
1928
engine:
2029
build:
2130
dockerfile: Dockerfile
@@ -27,6 +36,7 @@ services:
2736
- 3005:3005
2837
depends_on:
2938
- db
39+
- redis
3040
deploy:
3141
resources:
3242
limits:
@@ -38,3 +48,4 @@ services:
3848

3949
volumes:
4050
db_data:
51+
redis_data:

0 commit comments

Comments
 (0)