Skip to content

Commit

Permalink
Update Docker volume mounts in server README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonacox committed May 6, 2024
1 parent 1ac906f commit 064b49d
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions server/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,16 +54,16 @@ Starting threads...

```bash
docker run \
-d \
-p 8888:8888 \
-p 6666:6666/udp \
-p 6667:6667/udp \
-e DEBUG='no' \
--mount type=bind,source="$(pwd)"/devices.json,target=/app/devices.json \
--mount type=bind,source="$(pwd)"/tinytuya.json,target=/app/tinytuya.json \
--name tinytuya \
--restart unless-stopped \
jasonacox/tinytuya
-d \
-p 8888:8888 \
-p 6666:6666/udp \
-p 6667:6667/udp \
-e DEBUG='no' \
-v $PWD/devices.json:/app/devices.json \
-v $PWD/tinytuya.json:/app/tinytuya.json \
--name tinytuya \
--restart unless-stopped \
jasonacox/tinytuya
```

2. Test the Server
Expand Down

0 comments on commit 064b49d

Please sign in to comment.