Re: Port forwarding for Guix containers

2020-11-21 Thread Jason Conroy
I agree with Zihao that containers have certain use cases where it's important to use separate network namespaces for each instance, with traffic forwarded selectively between host and guest. Security (and hence firewalling) is part of the issue, but it's also about the container's maintainability

Re: Port forwarding for Guix containers

2020-11-23 Thread Jason Conroy
I don't know if I'm being clear. I can't provide code because I did not > have the time to do it yet, but this was my understanding of how guix > works. > > Jason Conroy writes: > > > I agree with Zihao that containers have certain use cases where it's &g

Re: Port forwarding for Guix containers

2020-11-25 Thread Jason Conroy
Hi Zihao, It sounds like you're running Guix for your host OS and want to have Guix containers inside of that? If that's so, then my existing config won't be much use to you: right now I'm running my Guix containers (the `guix system container` shell scripts) inside of Debian via systemd. But in

Re: Manual: why not restart service over killing the process

2020-11-29 Thread Jason Conroy
Perhaps a third option is adding a Shepherd "reload" action for nginx to perform the SIGHUP, similar to this? https://git.savannah.gnu.org/cgit/guix.git/commit/gnu/services/base.scm?id=d3f75179e5741db29358e3e723146fd20ec79de9 I'm curious whether this approach has trade-offs compared to what's doc