We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aed4fe1 commit ec83dcaCopy full SHA for ec83dca
2 files changed
docker-compose.yml
@@ -34,12 +34,10 @@ services:
34
- '8081:8081'
35
depends_on:
36
- db
37
- network:
38
- - devopsnotepad
39
40
41
db:
42
- image: mysql:8.0
+ image: mysql:5.7
43
container_name: db-mysql
44
environment:
45
MYSQL_DATABASE: $MYSQL_DATABASE
frontend_website/Dockerfile
@@ -11,6 +11,6 @@ COPY package*.json ./
11
12
# runs the production server
13
RUN npm cache verify
14
-RUN npm install
+RUN npm install --force
15
COPY . .
16
CMD ["npm", "start"]
0 commit comments