Run dev server on same port so auto-reload works
This commit is contained in:
parent
caffd0efc8
commit
cb577b5d84
|
@ -17,6 +17,7 @@ services:
|
||||||
environment:
|
environment:
|
||||||
- CACHE_URL=redis://data:6379
|
- CACHE_URL=redis://data:6379
|
||||||
- DATA_URL=redis://data:6379
|
- DATA_URL=redis://data:6379
|
||||||
|
- PORT=8080
|
||||||
volumes:
|
volumes:
|
||||||
- .:/app
|
- .:/app
|
||||||
- /app/node_modules
|
- /app/node_modules
|
||||||
|
@ -25,7 +26,7 @@ services:
|
||||||
networks:
|
networks:
|
||||||
- localnet
|
- localnet
|
||||||
ports:
|
ports:
|
||||||
- "8080:5000"
|
- "8080:8080"
|
||||||
|
|
||||||
worker:
|
worker:
|
||||||
build: .
|
build: .
|
||||||
|
|
Loading…
Reference in New Issue