File tree Expand file tree Collapse file tree 5 files changed +11
-10
lines changed Expand file tree Collapse file tree 5 files changed +11
-10
lines changed Original file line number Diff line number Diff line change @@ -13,8 +13,8 @@ RUN npm install
13
13
# Bundle your app source code into the container
14
14
COPY . .
15
15
16
- # Expose the port on which your Auth service will run
16
+ # Expose the port on which your Chat service will run
17
17
EXPOSE 3007
18
18
19
- # Define the command to start your Auth service
19
+ # Define the command to start your Chat service
20
20
CMD [ "npm" , "run" , "dev" ]
Original file line number Diff line number Diff line change 1
1
# Use an official Node.js runtime as a parent image
2
2
FROM node:14
3
+
3
4
# Set the working directory in the container
4
5
WORKDIR /usr/src/collab-service
5
6
@@ -12,8 +13,8 @@ RUN npm install
12
13
# Bundle your app source code into the container
13
14
COPY . .
14
15
15
- # Expose the port on which your Auth service will run
16
+ # Expose the port on which your Collab service will run
16
17
EXPOSE 3006
17
18
18
- # Define the command to start your Auth service
19
+ # Define the command to start your Collab service
19
20
CMD [ "npm" , "run" , "dev" ]
Original file line number Diff line number Diff line change @@ -13,8 +13,8 @@ RUN npm install
13
13
# Bundle your app source code into the container
14
14
COPY . .
15
15
16
- # Expose the port on which your Auth service will run
16
+ # Expose the port on which your Matching service will run
17
17
EXPOSE 3005
18
18
19
- # Define the command to start your Auth service
19
+ # Define the command to start your Matching service
20
20
CMD [ "npm" , "run" , "dev" ]
Original file line number Diff line number Diff line change @@ -13,8 +13,8 @@ RUN npm install
13
13
# Bundle your app source code into the container
14
14
COPY . .
15
15
16
- # Expose the port on which your Auth service will run
16
+ # Expose the port on which your Question service will run
17
17
# EXPOSE 3002
18
18
19
- # Define the command to start your Auth service
19
+ # Define the command to start your Question service
20
20
CMD [ "npm" , "run" , "dev" ]
Original file line number Diff line number Diff line change @@ -13,8 +13,8 @@ RUN npm install
13
13
# Bundle your app source code into the container
14
14
COPY . .
15
15
16
- # Expose the port on which your Auth service will run
16
+ # Expose the port on which your User service will run
17
17
# EXPOSE 3004
18
18
19
- # Define the command to start your Auth service
19
+ # Define the command to start your User service
20
20
CMD [ "npm" , "run" , "dev" ]
You can’t perform that action at this time.
0 commit comments