Make docker not run on localhost (#31)
parent
535715932d
commit
7ac8bd7af8
|
@ -7,13 +7,13 @@ services:
|
||||||
expose:
|
expose:
|
||||||
- 3001
|
- 3001
|
||||||
ports:
|
ports:
|
||||||
- "127.0.0.1:3001:3001"
|
- "0.0.0.0:3001:3001"
|
||||||
web:
|
web:
|
||||||
build: ./web/
|
build: ./web/
|
||||||
expose:
|
expose:
|
||||||
- 3000
|
- 3000
|
||||||
ports:
|
ports:
|
||||||
- "127.0.0.1:3000:3000"
|
- "0.0.0.0:3000:3000"
|
||||||
volumes:
|
volumes:
|
||||||
db:
|
db:
|
||||||
driver: local
|
driver: local
|
||||||
|
|
Loading…
Reference in New Issue