veganism.social is one of the many independent Mastodon servers you can use to participate in the fediverse.
Veganism Social is a welcoming space on the internet for vegans to connect and engage with the broader decentralized social media community.

Administered by:

Server stats:

230
active users

#docker

43 posts38 participants0 posts today

#ayuda fediverso qbittorrent #docker #vpn
alguien usa esto?

hotio.dev/containers/qbittorre

estoy probando que me funciona, si qbittorrent con gluetun de lado, o esto...

la primera opcion me sale firewalled, y esta ultima, me da este error:

qbittorrent | Error: No symbol type information
qbittorrent | add rule inet hotio input iifname eth0 yes dport yes ip daddr 172.26.0.2 counter accept
qbittorrent | ^^^
qbittorrent | s6-rc: warning: unable to start service init-wireguard: command exited 1
qbittorrent | /run/s6/basedir/scripts/rc.init: warning: s6-rc failed to properly bring all the services up! Check your logs (in /run/uncaught-logs/current if you have in-container logging) for more information.
qbittorrent | /run/s6/basedir/scripts/rc.init: fatal: stopping the container.

:(

se agradece #boost

el objetivo es tener qbittorrent (en docker) con vpn SOLO en ese contenedor. aplicarle vpn al host (raspberry) puedo pero no me interesa.

gracias!

hotio.devhotio/qbittorrent - hotio.devDocumentation for all Docker images maintained by hotio.

I am, and I'm sorry in advance, just starting to get into containers. I mentioned this a few weeks ago just trying to learn more, but I'm going to start really getting into it. Do I need to start with Docker? I've heard about Podman and in learning about both, it seems like a fantastic alternative. But I don't see it discussed much.

Totally willing to accept recommended tutorials in the form of YouTube videos, documentation, etc to get started with this stuff.

Ever wished to make Docker’s network-internal DNS resolution (listening on 127.0.0.11) available to the host, too?

You can use dnsmasq for that!

docker run \
--rm \
--network nginx \
--name dns-forwarder \
--publish 127.0.0.11:53:53/udp \
--entrypoint=/usr/sbin/dnsmasq \
dockurr/dnsmasq \
--log-queries \
--no-daemon \
--no-resolv \
--server=127.0.0.11

Then:

root# host alertmanager. 127.0.0.11
alertmanager has address 172.18.0.5