Skip to content

Jasper-1024/docker_overture

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

36 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Unofficial Overture Docker Image

for chinese user -> 非官方 Overture Docker 镜像

Overture

overture is a DNS server/forwarder/dispatcher written in Go.

If you want to know about config,you can refer to the following url.

Pull the image

Pull the image

docker pull jasperhale/overture

Start a container

default config local at /home/overture/config.yml

  • PrimaryDNS use Ali DNS,connect by doh.
  • AlternativeDNS use Google DNS,connect by dot.

There is an example to start a container that listen on port 55, run as a overture server like below:

# -d parameter is indispensable
docker run -d -p 53:53 -p 53:53/udp jasperhale/overture

or you could use docker-compose,A sample in docker-compose.yml like below:

version: '3'

services:
  
  overture:
    image: jasperhale/overture
    container_name: overture
    restart: always
    ports:
      - "53:53/tcp"
      - "53:53/udp"
    volumes:
      - - ./config.yml:/home/overture/config.yml

run as a overture server like below:

docker-compose up -f docker-compose.yml up -d

Support

If you encounter any bugs, you can open a new issue

If you have other questions, you can email me.

[email protected]

About

unofficial overture docker image

Resources

License

Stars

Watchers

Forks

Packages

No packages published