edgd1er
edgd1er
I had a similar problem with acl on openmediavault. Gravity db was in read only mode. By default pihole user id inside the container is 999 and pihole group has...
@muzzah , this is the script I created in my own version of [docker-pihole](https://github.com/edgd1er/docker-pi-hole/blob/master/s6/debian-root/etc/cont-init.d/05-changer-uid-gid.sh) which is 99% based on pihole sources. there is minor changes like redirection of logs to...
looks like tini implementation is rather simple: add tini to package and change `ENTRYPOINT [ "/usr/bin/start.sh"]` to ``` ENTRYPOINT [ "tini", "--" ] CMD [ "/usr/bin/start.sh" ] ``` according to...
v6 is a big overhaul, I understand time is not limitless :) I realise that the phrase "where is the catch ?" may be be understood as an unpleasant remark....
ideas: * check if log is listed in var/lib/logrotate/status * according to rotation (daily, weekly, monthly), log creation date is ok. * https://serverfault.com/questions/189320/how-can-i-monitor-what-logrotate-is-doing
When the haugene's container is starting, connections are unprotected until openvpn is up. The firewall is not blocking/filtering outgoing connection. If qbittorrent is using service network at that moment, private...
I had a similar problem though, a container restart would fix the problem. the cause the proxy stopped responding is that after a period of time, docker is giving a...
http://p.p will give you the listening port and address if privoxy is listening on the proper eth0 ip. run `ip -j a show dev eth0 | jq -r .[].addr_info[].local` in...
@barclayiversen , as I understood it, docker sometime change container's ip. This was not a problem when transmission was listening to all interfaces ( ethX and tun ) : see...
an easier, may be better, also simplier would be to add an health check to compare actual eth0's ip and transmission ip, whenever there is a difference healthcheck fails and/or...