Leonid Makarov

Results 132 comments of Leonid Makarov

> I thought about that, but that looks like weeks to implement 😢 There is also Surfshark (and possibly NordVPN, Cyberghost) which also work the same as PIA where you...

Discovered this project via https://github.com/tmate-io/tmate/issues/257#issuecomment-1055924172. Also looking for a `tmate -F` alternative to run a remote ssh/terminal **daemon** in a container. @owenthereal is this feature on your short or long-term...

Here's a feature branch with cachefilesd for NFS and SMB https://github.com/blinkreaction/boot2docker-vagrant/tree/feature/cachefilesd Use nfs (Mac) or smb2 (Windows) synced folder types and set `cachefilesd: true` in `vagrant.yml` In my own testing...

@Tset-Noitamotua the error on your 2nd screenshot resulted from a DNS resolution issue. It might have been one time. Are you still experiencing it?

Another reference with the same recommendations and details on what those 1 and 3 values mean. http://serverfault.com/questions/235032/intermittent-connection-to-windows-7-shared-folder-from-windows-xp-workstations/236393#236393

Hi @pbuyle, it is possible, however not straightforward at the moment. **For Mac and Windows users** - The VM box subnet/IP can be changed in the `vagrant.yml` file https://github.com/blinkreaction/boot2docker-vagrant/blob/develop/vagrant.yml#L59 -...

I've been thinking about this and similar requests we've been receiving internally. It will probably make more sense to write manual setup instructions for Linux. There are just too many...

@TLyngeJ I've not yet tested Drude/Docker with Ubuntu 16.04. What are your docker and docker-compose versions? ``` docker version docker-compose version ``` Try running `dsh install prerequisites` - this should...

@TLyngeJ try this: ``` docker rm -f vhost-proxy || true docker run -d --name vhost-proxy --restart=always --privileged --userns=host \ -p 192.168.10.10:80:80 -p 192.168.10.10:443:443 \ -v /var/run/docker.sock:/tmp/docker.sock \ blinkreaction/nginx-proxy:stable ``` Restart...

It's a little more complex than just `--privileged`. Starting from docker 1.11.0 user namespaces are enabled by default. The root user in a container no longer maps to uid=0 on...