Skip to content

Commit d91d7d5

Browse files
committed
Fix comments in Dockerfiles
1 parent 286444d commit d91d7d5

File tree

5 files changed

+11
-10
lines changed

5 files changed

+11
-10
lines changed

ChatService/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ RUN npm install
1313
# Bundle your app source code into the container
1414
COPY . .
1515

16-
# Expose the port on which your Auth service will run
16+
# Expose the port on which your Chat service will run
1717
EXPOSE 3007
1818

19-
# Define the command to start your Auth service
19+
# Define the command to start your Chat service
2020
CMD [ "npm", "run", "dev"]

CollabService/Dockerfile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# Use an official Node.js runtime as a parent image
22
FROM node:14
3+
34
# Set the working directory in the container
45
WORKDIR /usr/src/collab-service
56

@@ -12,8 +13,8 @@ RUN npm install
1213
# Bundle your app source code into the container
1314
COPY . .
1415

15-
# Expose the port on which your Auth service will run
16+
# Expose the port on which your Collab service will run
1617
EXPOSE 3006
1718

18-
# Define the command to start your Auth service
19+
# Define the command to start your Collab service
1920
CMD [ "npm", "run", "dev"]

MatchingService/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ RUN npm install
1313
# Bundle your app source code into the container
1414
COPY . .
1515

16-
# Expose the port on which your Auth service will run
16+
# Expose the port on which your Matching service will run
1717
EXPOSE 3005
1818

19-
# Define the command to start your Auth service
19+
# Define the command to start your Matching service
2020
CMD [ "npm", "run", "dev"]

QuestionService/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ RUN npm install
1313
# Bundle your app source code into the container
1414
COPY . .
1515

16-
# Expose the port on which your Auth service will run
16+
# Expose the port on which your Question service will run
1717
# EXPOSE 3002
1818

19-
# Define the command to start your Auth service
19+
# Define the command to start your Question service
2020
CMD [ "npm", "run", "dev"]

UserService/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ RUN npm install
1313
# Bundle your app source code into the container
1414
COPY . .
1515

16-
# Expose the port on which your Auth service will run
16+
# Expose the port on which your User service will run
1717
# EXPOSE 3004
1818

19-
# Define the command to start your Auth service
19+
# Define the command to start your User service
2020
CMD [ "npm", "run", "dev"]

0 commit comments

Comments
 (0)