Skip to content

Commit 2ff5d83

Browse files
committed
"version": "1.0.6",
1 parent d66eaa4 commit 2ff5d83

File tree

3 files changed

+36
-2
lines changed

3 files changed

+36
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ docker run -p 3000:3000 \
5454
-e API_KEYS=supersecretkey \
5555
-e PROD_HOST=http://localhost:3000 \
5656
-v ~/whatsapp-data:/app/data \
57-
balmacefa/whatsapp_web_client_api:1.0.5
57+
balmacefa/whatsapp_web_client_api:1.0.6
5858

5959
```
6060
https://hub.docker.com/r/balmacefa/whatsapp_web_client_api

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "whatsapp_web_client_api",
3-
"version": "1.0.5",
3+
"version": "1.0.6",
44
"description": "Whatsapp Web Client API",
55
"main": "src/index.ts",
66
"scripts": {

update_dockerhub.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
# 🚀 Actualizar imagen en Docker Hub a la versión 1.0.6
2+
3+
## 1. Inicia sesión en Docker
4+
```bash
5+
docker login
6+
```
7+
8+
## 2. Construye la nueva imagen con la versión 1.0.6
9+
```bash
10+
docker build -t balmacefa/whatsapp_web_client_api:1.0.6 .
11+
```
12+
13+
## 3. (Opcional) Actualizar el tag `latest`
14+
```bash
15+
docker tag balmacefa/whatsapp_web_client_api:1.0.6 balmacefa/whatsapp_web_client_api:latest
16+
```
17+
18+
## 4. Sube las imágenes a Docker Hub
19+
20+
### Push del tag 1.0.6
21+
```bash
22+
docker push balmacefa/whatsapp_web_client_api:1.0.6
23+
```
24+
25+
### Push del tag latest (si lo usaste)
26+
```bash
27+
docker push balmacefa/whatsapp_web_client_api:latest
28+
```
29+
30+
## ✔️ Verificación
31+
Después del push, revisa Docker Hub para confirmar que aparecen:
32+
33+
- `1.0.6`
34+
- `latest` (si lo actualizaste)

0 commit comments

Comments
 (0)