We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0a3c551 commit 2f96d1aCopy full SHA for 2f96d1a
README.en.md
@@ -167,6 +167,30 @@ npm start
167
168
---
169
170
+
171
+## 🐳 Deployment with Docker
172
173
+### ▶️ Prerequisites
174
+- Docker must be installed on your machine: [Install Docker](https://docs.docker.com/get-docker/)
175
176
+### ▶️ Launch the Angular frontend with Docker
177
178
+```bash
179
+docker pull ganatan/frontend-angular
180
+docker run -d -p 4200:4200 ganatan/frontend-angular
181
+# http://localhost:4200
182
+```
183
184
+### ▶️ Launch the JavaScript backend with Docker
185
186
187
+docker pull ganatan/backend-javascript
188
+docker run -d -p 3000:3000 ganatan/backend-javascript
189
+# http://localhost:3000
190
191
192
+---
193
194
## 👤 Author
195
196
- **Danny** – [www.ganatan.com](https://www.ganatan.com)
0 commit comments