Skip to content
This repository has been archived by the owner on May 20, 2024. It is now read-only.

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
azrod committed Dec 21, 2021
1 parent 97d5c63 commit b0b6644
Showing 1 changed file with 28 additions and 1 deletion.
29 changes: 28 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,34 @@ UpdateIP is a automatic update of a DNS record based on the External IP address

## How to setup

> Shortly
### **From Docker Run**

```bash
docker run -itd -v "./config.yaml:config.yaml" ghcr.io/azrod/updateip:latest
```

### **From Docker Compose**

```bash
version: '3.8'

services:
updateip:
container_name: updateaip
image: ghcr.io/azrod/updateip:latest
volumes:
- ./config.yaml:config.yaml:ro

```

### **From Source**

```bash
go mod tidy
go build

./updateip
```

# How to config

Expand Down

0 comments on commit b0b6644

Please sign in to comment.