hostname 0.0.0.0

This commit is contained in:
Evan Feenstra 2024-09-23 22:01:22 -07:00
parent 70b50053e8
commit d6a7be6173
2 changed files with 16 additions and 1 deletions

View File

@ -49,4 +49,4 @@ EXPOSE 3000
ENV PORT=3000
CMD HOSTNAME=localhost node server.js
CMD HOSTNAME=0.0.0.0 node server.js

15
dev.yaml Normal file
View File

@ -0,0 +1,15 @@
services:
livekit:
image: sphinx-livekit
command: ["node", "server.js"]
restart: on-failure
container_name: livekit.sphinx
environment:
- HOSTNAME=0.0.0.0
ports:
- 3000:3000