We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f70b75 commit 08cc6c9Copy full SHA for 08cc6c9
docker-compose.yml
@@ -1,14 +1,14 @@
1
version: "3.9"
2
services:
3
recodehive:
4
- build:
+ build:
5
context: .
6
ports:
7
- "3000:3000"
8
volumes:
9
- .:/app
10
- - /app/node_modules # Prevents node_modules being overwritten by the mount
+ - /app/node_modules # Prevents node_modules being overwritten by the mount
11
working_dir: /app
12
- command: npm run dev # THIS is the crucial change for hot-reload!
+ command: npm run dev -- --host 0.0.0.0 # THIS is the crucial change for hot-reload!
13
environment:
14
- NODE_ENV=development
0 commit comments