feat: added docker-compose file

This commit is contained in:
Yandrik 2022-07-10 22:19:59 +02:00
parent 4924afe15c
commit 1537a44df1
1 changed files with 13 additions and 0 deletions

13
docker-compose.yml Normal file
View 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"