You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+17Lines changed: 17 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -65,6 +65,23 @@ npm start
65
65
```
66
66
To ensure proper functionality of the application locally, an npm `6.x.x` and node.js `v11.x.x` versions are required. More information about this problem is available in the [#16][4].
67
67
68
+
## Set Up Project with Docker
69
+
70
+
```bash
71
+
# Build Docker Image
72
+
docker build -t make_sense docker/
73
+
74
+
# Run Docker Image as Service
75
+
docker run -dit -p 3000:3000 --restart=always --name=make_sense make_sense
0 commit comments