Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Version Update #46

Open
ain-soph opened this issue Nov 26, 2024 · 2 comments
Open

Version Update #46

ain-soph opened this issue Nov 26, 2024 · 2 comments

Comments

@ain-soph
Copy link

Are you considering to change the GitHub workflow from on push to scheduled every month or so to keep dnsmasq version updated?

@panchoh
Copy link
Member

panchoh commented Nov 26, 2024

Definitely a good idea, and not just replacing but supplementing, since both workflows have merit.

We have pending giving this repo a push (both literally and figuratively), in the following month. We'll take your input into account, thanks for providing it!

While we are at it, is there any other feedback you want to give us? Feel free to comment right here or open another issue if you think it makes more sense.

At any rate, thanks a bunch for the heads up!

@ain-soph
Copy link
Author

While we are at it, is there any other feedback you want to give us?

Wanna share my compose file which might help other easier to hand on:

services:
  dnsmasq:
    image: 4km3/dnsmasq
    build: .
    container_name: dnsmasq
    # network_mode: host
    networks:
      - ipv6
    privileged: true
    user: 501:20  # Mac user group for easily editing logs outside
    cap_add:
      - NET_ADMIN
    volumes:
      - ./dnsmasq.conf:/etc/dnsmasq.conf
      - ./dnsmasq.log:/log/dnsmasq.log
    ports:
      - 53:53
      - 53:53/udp
    restart: unless-stopped
networks:
  ipv6:
    external: true

This could have logging by adding this option log-facility=/log/dnsmasq.log in the dnsmasq.conf

To run,
docker network create --ipv6 ipv6
docker compose up --build -d

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants