8000 docker-stubby/README.md at main · mill1000/docker-stubby · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Latest commit

 

History

History
33 lines (28 loc) · 676 Bytes

README.md

File metadata and controls

33 lines (28 loc) · 676 Bytes

docker-stubby

A Dockerfile for getdns stubby based on Alpine Linux.

No customization. No tweaks. Just stubby with a default config.

Build

Clone the repo.

git clone https://github.com/mill1000/docker-stubby

Populate submodules.

git submodule update --init --recursive

Build the image.

docker build -t stubby:latest .

Deploy

Here's an example Docker Compose.

services:
  stubby:
    image: stubby:latest
    container_name: stubby
    restart: unless-stopped
    network_mode: host
    volumes:
      - ./stubby/stubby.yml:/usr/local/etc/stubby/stubby.yml
0