mirror of
https://github.com/Expand-sys/ccashfrontend
synced 2025-12-16 14:52:13 +11:00
fix for docker compat
This commit is contained in:
parent
70cd9f59a1
commit
5e3175c03f
1 changed files with 1 additions and 1 deletions
2
index.js
2
index.js
|
|
@ -356,7 +356,7 @@ process.on("SIGINT", function () {
|
|||
process.exit();
|
||||
});
|
||||
|
||||
fastify.listen(process.env.PORT || 3000, function (err, address) {
|
||||
fastify.listen(process.env.PORT || 3000, "0.0.0.0", function (err, address) {
|
||||
if (err) {
|
||||
fastify.log.error(err);
|
||||
process.exit(1);
|
||||
|
|
|
|||
Loading…
Reference in a new issue