Skip to content

Commit b380900

Browse files
author
Mano Marks
authored
Merge pull request dockersamples#95 from ManoMarks/master
removing --debug flag from nodemon
2 parents 9785312 + cfb85ea commit b380900

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docker-compose-simple.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ services:
2121

2222
result:
2323
build: ./result
24-
command: nodemon --debug server.js
24+
command: nodemon server.js
2525
volumes:
2626
- ./result:/app
2727
ports:

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ services:
1414

1515
result:
1616
build: ./result
17-
command: nodemon --debug server.js
17+
command: nodemon server.js
1818
volumes:
1919
- ./result:/app
2020
ports:

0 commit comments

Comments
 (0)