From 41ab3de01c22365527ccfbece64773886f75703b Mon Sep 17 00:00:00 2001 From: Basile Date: Wed, 12 Jun 2024 08:40:14 +0200 Subject: [PATCH] chore: Update NATS base image to version 2.10.16 --- Docker/NATS/Dockerfile | 8 +------- Docker/NATS/nats.conf | 0 SAEMicroServices.code-workspace | 8 ++++++++ 3 files changed, 9 insertions(+), 7 deletions(-) create mode 100644 Docker/NATS/nats.conf create mode 100644 SAEMicroServices.code-workspace diff --git a/Docker/NATS/Dockerfile b/Docker/NATS/Dockerfile index 99cfdc0..e042f28 100644 --- a/Docker/NATS/Dockerfile +++ b/Docker/NATS/Dockerfile @@ -1,14 +1,8 @@ -# Use the official NATS image as the base image -FROM nats:latest +FROM nats:2.10.16 -# Set the working directory inside the container WORKDIR /app - -# Copy the configuration file into the container COPY nats.conf /app/nats.conf -# Expose the NATS server port EXPOSE 4222 -# Start the NATS server CMD ["nats-server", "-c", "/app/nats.conf"] \ No newline at end of file diff --git a/Docker/NATS/nats.conf b/Docker/NATS/nats.conf new file mode 100644 index 0000000..e69de29 diff --git a/SAEMicroServices.code-workspace b/SAEMicroServices.code-workspace new file mode 100644 index 0000000..876a149 --- /dev/null +++ b/SAEMicroServices.code-workspace @@ -0,0 +1,8 @@ +{ + "folders": [ + { + "path": "." + } + ], + "settings": {} +} \ No newline at end of file