[-] qx128@lemmy.world 3 points 1 day ago

It sounds like your issue might be related to how your Docker networks are configured for DNS and internet access. Try these:

  1. Check Network Configuration: Ensure your new networks are correctly configured to allow internet access. Docker networks should be able to route traffic to the internet by default unless specified otherwise.

  2. DNS Configuration: Since you're using Pi-hole for DNS, make sure the new networks are properly configured to use Pi-hole as their DNS server.

  3. Inspect Network Settings: Compare the settings of old_main with the new networks. Use the following command to inspect the network configuration:

    docker network inspect old_main
    docker network inspect cloudflared
    

    Pay attention to the gateway, subnet, and any custom DNS settings.

  4. Check Docker Daemon Configuration: Verify that your daemon.json file is correctly set up to use Pi-hole for DNS. It should look something like this:

    {
      "dns": ["<Pi-hole IP>"]
    }
    
  5. Verify Container Configuration: Ensure that your containers are correctly configured to use the new network. This can be specified in your docker-compose files like this:

    version: '3.7'
    services:
      cloudflared:
        image: cloudflare/cloudflared
        networks:
          - cloudflared
    
    networks:
      cloudflared:
        external: true
    
  6. Check Firewall Rules: Ensure there are no firewall rules on your host or network equipment that might be blocking traffic from the new networks.

  7. Test Connectivity: Run a simple connectivity test from within a container on the new network to check internet access:

    docker run --rm -it --network cloudflared alpine ping -c 4 google.com
    

    If this fails, the issue is likely with network configuration rather than the containers themselves.

  8. Docker Network Restart: Sometimes, Docker networks need to be restarted to apply changes correctly. Try removing and recreating the problematic networks:

    docker network rm cloudflared
    docker network create cloudflared
    

If none of the above steps resolve the issue, there might be a deeper configuration problem. At this point, it might be helpful to see the exact configuration of your docker-compose files and the output of the network inspection commands.

[-] qx128@lemmy.world 7 points 5 days ago

This is the comment I came here for.

[-] qx128@lemmy.world -5 points 5 days ago

This guy gets it.

[-] qx128@lemmy.world 31 points 1 week ago

It’s also the best Linux distro! 🌱

[-] qx128@lemmy.world 71 points 1 month ago* (last edited 1 month ago)

Are AI products released by a company liable for slander? 🤷🏻

I predict we will find out in the next few years.

[-] qx128@lemmy.world 58 points 3 months ago

Hahaha now code-golf it. One line FTW!

remove(Image.open(‘cl.jpeg’)).save(‘output.png’)

[-] qx128@lemmy.world 32 points 4 months ago

laughs in Linux desktop

Why do people continue to put up with this? I don’t get any ads or bloatware like “Paint 3D” or “X Box” on Linux Mint. And Linux desktops are so easy to use now! Blows my mind that people tolerate these antics from Microsoft.

[-] qx128@lemmy.world 57 points 5 months ago

Fun fact: non-profits are required to report the incomes of their highest paid employees on IRS form 990. In 2022, Mark Surman was paid $344,483. This is well below executive pay in Silicon Valley, and on par with normal software engineer pay in the same area according to GlassDoor.

Sure, some executives are overpaid, but this is very much not the case here.

It’s worth it to find out before spewing hate and bias.

[-] qx128@lemmy.world 80 points 5 months ago

I realize most of you, dear Lemmings, are distraught in fear over this news. Fear not! “Tesla is fixing the vehicles by releasing a free, over-the-air software update.”

It’s almost like this “news article” was deliberately trying to mislead you to gain ad revenue! Fortunately for you, I have dispelled the misinformation!

[-] qx128@lemmy.world 49 points 7 months ago

Check out Ars Technica. I’ve always enjoyed the fact that the are more technical than average news sources. For example, when they report on a software security vulnerability, they’ll actually go into the command line and try it for themselves. Pretty good reporters which more than basic tech knowledge, if you ask me…

https://arstechnica.com/

[-] qx128@lemmy.world 54 points 8 months ago

YouTube staff underestimate the amount of effort tech savvy people will devote to remove minor annoyances. Ultimately, the core capability of YouTube is to deliver a video from its servers to your browser. Adblock tech will continue to win the cat-and-mouse game in the long run.

[-] qx128@lemmy.world 31 points 8 months ago

Can we just use normal words? How about “community”?

view more: next ›

qx128

joined 11 months ago