Skip to content
This repository was archived by the owner on Apr 24, 2025. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,18 +28,18 @@ partials:
executors:
node-standalone:
docker:
- image: cimg/node:18.9.1
- image: cimg/node:18.20.8
node-with-dependencies:
docker:
- image: cimg/node:18.9.1
- image: cimg/node:18.20.8
environment: *main-env
- image: mongo:6.0.1-focal
- image: mongo:6.0.4-focal
environment: *mongo-env
- image: minio/minio:RELEASE.2022-05-26T05-48-41Z
entrypoint: sh
command: -c 'mkdir -p /data/app && /opt/bin/minio server /data'
environment: *mino-env
- image: cimg/redis:7.0.4
- image: cimg/redis:7.4.2
command: redis-server --appendonly yes
- image: appvantage/html2pdf-service:1.7.2
name: html2pdf
Expand All @@ -53,12 +53,12 @@ executors:
docker:
- image: cypress/browsers:node18.6.0-chrome105-ff104
environment: *main-env
- image: mongo:6.0.1-focal
- image: mongo:6.0.4-focal
environment: *mongo-env
- image: minio/minio:RELEASE.2022-05-26T05-48-41Z
entrypoint: sh
command: -c 'mkdir -p /data/app && /opt/bin/minio server /data'
- image: cimg/redis:7.0.4
- image: cimg/redis:7.4.2
command: redis-server --appendonly yes
- image: appvantage/html2pdf-service:1.7.2
name: html2pdf
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:18.7.0-buster-slim as base
FROM node:18.20.3-buster-slim as base

# install libmongocrypt
# this can be removed if the projects does not target a support for CSFLE
Expand Down
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ services:
image: mailhog/mailhog:v1.0.1

redis:
image: redis:7.0.4
image: redis:7.4.2
command: redis-server --appendonly yes
volumes:
- redis:/data
Expand All @@ -25,7 +25,7 @@ services:
mongo:
# can be replace by ghcr.io/appvantageasia/mongo-entreprise:X.X.X
# changes to be done in override file
image: mongo:6.0.1
image: mongo:6.0.22
environment:
MONGO_INITDB_ROOT_USERNAME: root
MONGO_INITDB_ROOT_PASSWORD: password
Expand Down