feat: added docker-compose file
This commit is contained in:
parent
4924afe15c
commit
1537a44df1
13
docker-compose.yml
Normal file
13
docker-compose.yml
Normal file
@ -0,0 +1,13 @@
|
||||
version: "2"
|
||||
services:
|
||||
node:
|
||||
image: "node"
|
||||
user: "node"
|
||||
working_dir: /home/node/app
|
||||
environment:
|
||||
- NODE_ENV=production
|
||||
volumes:
|
||||
- ./:/home/node/app
|
||||
ports:
|
||||
- "8000:8000"
|
||||
command: "npm start -- --host=0.0.0.0"
|
Loading…
Reference in New Issue
Block a user