Skip to content

Commit

Permalink
Adding dockerhub pre-built image notes (WhatsApp#113)
Browse files Browse the repository at this point in the history
  • Loading branch information
slawlor authored Jan 12, 2023
1 parent 752eebf commit 1e34751
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 1 deletion.
19 changes: 18 additions & 1 deletion FAQ.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,4 +75,21 @@ If you're still seeing a problem, you may fill out a bug report in the issues fi
Actually thanks to recent community fixes, HAProxy is no longer printing
any warning messages. Your host is actually running in interactive mode. You should be able to navigate to the host's port 8199 to view the statistics page ([http://localhost:8199](http://localhost:8199) on the machine running the proxy).

Related issue [#71](https://github.com/WhatsApp/proxy/issues/71)
Related issue [#71](https://github.com/WhatsApp/proxy/issues/71)

### (10) Why isn't there a pre-built image on DockerHub?

Apologies in the delay, but it takes some time to organize access to the
correct repositories. We're happy to announce there is now a pre-built image
based on the latest version in this repository. We'll strive to keep it
up-to-date as well. You can pull it (without needing to build locally) from

```bash
docker pull facebook/whatsapp_proxy:latest
```

After you've pulled the image, you can then run it with the same run commands as before except substituting in `facebook/whatsapp_proxy:latest` instead of `whatsapp_proxy:1.0`. This will point to the latest image for you without having to worry about building it yourself. Example run command might be

```bash
docker run -it -p 80:80 -p 443:443 -p 5222:5222 facebook/whatsapp_proxy:latest
```
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,14 @@ If you already have a proxy to use, you can connect it to WhatsApp by following

## Setting up your proxy

**UPDATE** There is now a pre-built image hosted in Meta's DockerHub repository. You no longer need to build the default image (if you don't want to customize it of course).

```bash
docker pull facebook/whatsapp_proxy:latest
```

You can then skip down to **Running the proxy** and substitute any tag of `whatsapp_proxy:1.0` with `facebook/whatsapp_proxy:latest`.

### 1. Clone the repository to your local machine
```bash
git clone https://github.com/WhatsApp/proxy.git
Expand Down

0 comments on commit 1e34751

Please sign in to comment.