File tree Expand file tree Collapse file tree 1 file changed +24
-0
lines changed Expand file tree Collapse file tree 1 file changed +24
-0
lines changed Original file line number Diff line number Diff line change @@ -167,6 +167,30 @@ npm start
167
167
168
168
---
169
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
+ ``` bash
187
+ docker pull ganatan/backend-javascript
188
+ docker run -d -p 3000:3000 ganatan/backend-javascript
189
+ # http://localhost:3000
190
+ ```
191
+
192
+ ---
193
+
170
194
## 👤 Author
171
195
172
196
- ** Danny** – [ www.ganatan.com ] ( https://www.ganatan.com )
You can’t perform that action at this time.
0 commit comments