Compare commits

...

2 Commits

Author SHA1 Message Date
Yandrik 1537a44df1 feat: added docker-compose file 2022-07-10 22:19:59 +02:00
Yandrik 4924afe15c doc: improved doc 2022-07-10 22:19:49 +02:00
2 changed files with 15 additions and 1 deletions

View File

@ -2,4 +2,5 @@
<center>Ulm University, SoSe 2022</center>
<center>Group: Sebastian Wünsch, Yannik Bretschneider, Jonas Schwedler, Megi Hoxhalli, Jana Leinmüller</center>
To view, clone the Git repo, and open the `index.html` file in a browser, or run `npm start` to start a development server.
To view, clone the Git repo, and open the `index.html` file in a browser, or run `npm install` and then `npm start`
to start a development server.

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"