We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 60bacf8 commit 11fb103Copy full SHA for 11fb103
.env.example
@@ -0,0 +1,4 @@
1
+HOST=0.0.0.0
2
+PORT=31982
3
+
4
+EXPOSE_PORT=31982
.gitignore
@@ -1,2 +1,3 @@
/node_modules
/src/server/example-state.json
+.env
docker-compose.yml
@@ -0,0 +1,17 @@
+version: "3"
+services:
+ hud:
5
+ image: node:18-alpine
6
+ command: sh -c "yarn && yarn watch"
7
+ user: node
8
+ working_dir: /home/node/app
9
10
+ environment:
11
+ HOST: ${HOST:-0.0.0.0}
12
13
+ ports:
14
+ - ${EXPOSE_PORT:-31982}:${PORT:-31982}
15
16
+ volumes:
17
+ - .:/home/node/app
0 commit comments