docs: update

Evan Chen 2021-10-16 23:59:13 +08:00
parent cc6208b483
commit 7d4fadf5d6
1 changed files with 17 additions and 2 deletions

View File

@ -37,14 +37,29 @@ Use "myip [command] --help" for more information about a command.
## Docker ## Docker
Server: ### Server
```shell ```shell
docker pull hub.kumoly.io/tools/myip:latest docker pull hub.kumoly.io/tools/myip:latest
docker run --name myip-server -d -p 5080:5080 --restart=always hub.kumoly.io/tools/myip docker run --name myip-server -d -p 5080:5080 --restart=always hub.kumoly.io/tools/myip
``` ```
Client: Or you can use docker-compose.yaml
```yaml
services:
myip:
image: hub.kumoly.io/tools/myip
container_name: myip-server
restart: always
ports:
- 5080:5080
volumes:
- /etc/localtime:/etc/localtime:ro
```
### Client
```shell ```shell
docker pull hub.kumoly.io/tools/myip:latest docker pull hub.kumoly.io/tools/myip:latest