docs: update

Evan Chen 2021-10-16 23:59:13 +08:00
parent cc6208b483
commit fab1102e60
2 changed files with 18 additions and 3 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

View File

@ -19,9 +19,9 @@ var ServerCmd = &cobra.Command{
} }
var ( var (
// declared in client // declared in client
// port string // port string
addr string addr string
) )