Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
mohamed-helmy authored May 16, 2024
1 parent 10b1507 commit 94d7154
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,22 @@ To use EmuHub, follow these steps:
3. **Run EmuHub Container**: Start the EmuHub container.

```bash
docker run -d -p 6080:6080 emuhub
docker run -d \
--name emulator \
--privileged \
-e VNCPASS=admin \
-e emuhubPASS=admin \
-e LISTENPORT=8000 \
-p 8000:8000 \
-v $(pwd)/apk-demo:/home/emuhub/apk \
--log-driver=json-file \
--log-opt max-size=20m \
--log-opt max-file=10 \
emuhub
```
4. **Access Emulators**: Open your web browser and navigate to `http://localhost:6080` to access the EmuHub interface and start testing your Android applications.
## Example Docker Compose
```yaml
version: '3'
services:
emulator:
image: mohamedhelmy/emuhub:latest
Expand All @@ -66,7 +76,7 @@ services:

**Run EmuHub Container**:

Start EmuHub using Docker Compose:
Start EmuHub using Docker Compose:

```bash
docker compose up -d
Expand Down

0 comments on commit 94d7154

Please sign in to comment.