Skip to content

Docker

Docker image is stored in GitHub

Images is available for Arch :

  • linux/amd64
  • linux/arm
  • linux/arm64

Basic running

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

Advanced running

You can load the configuration via the configuration file and / or by environment variables See all available environment variables

docker run -itd \
    -v "./config.yaml:/config/config.yaml" \
    -e "LOG_LEVEL=debug" \
    -e "LOG_HUMANIZE=true" \
    -e "METRICS_ENABLE=true" \
    -p "8080:8080" \
    ghcr.io/azrod/updateip:latest
Back to top