Skip to content

Commit 2f96d1a

Browse files
committed
Improve Docker on README-en
1 parent 0a3c551 commit 2f96d1a

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

README.en.md

+24
Original file line numberDiff line numberDiff line change
@@ -167,6 +167,30 @@ npm start
167167

168168
---
169169

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+
170194
## 👤 Author
171195

172196
- **Danny**[www.ganatan.com](https://www.ganatan.com)

0 commit comments

Comments
 (0)