8000 GitHub - rittme/docker-avahi: avahi in a container
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

rittme/docker-avahi

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

docker avahi

Quickstart

Get initialize configuration:

docker create --name avahi-config rittme/avahi:latest
docker cp avahi-config:/etc/avahi .
docker rm avahi-config

Disable DBus for starting the container

Edit your avahi-daemon.conf and set the following line.

enable-dbus=no

Start the container

docker run -d --net=host -v $(pwd)/avahi:/etc/avahi rittme/avahi:latest

Docker compose

  avahi:
    container_name: avahi
    image: rittme/avahi:latest
    network_mode: host
    volumes:
      - ./avahi:/etc/avahi:ro
    restart: unless-stopped

Build the image

docker build --build-arg AVAHI_VERSION=$(cat VERSION) -t rittme/avahi:$(cat VERSION) .

Issues

If you have any issues feel free to create an issue on GitHub

Credits

This repository is a fork from solidnerd/docker-avahi

About

avahi in a container

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Dockerfile 80.5%
  • Makefile 19.5%
0