ssh

How to access /var/lib/docker in windows 10 docker desktop?

陌路散爱 提交于 2020-08-27 07:12:47
问题 Installed docker desktop for windows 10 Used powershell to run docker containers ( ubuntu ) Now, I want to browse to /var/lib/docker --> want to browse to overlay2 to check layers.. /diff folder etc. If i access /var/lib/docker folder - powershell complains that this folder does not exist. Other piece of info: I have already checked out the disk image location which is mapped for docker desktop. It is a vhdx file. I was not able to open it with Oracle virtual box - it says it is not a

How to access /var/lib/docker in windows 10 docker desktop?

倖福魔咒の 提交于 2020-08-27 07:12:04
问题 Installed docker desktop for windows 10 Used powershell to run docker containers ( ubuntu ) Now, I want to browse to /var/lib/docker --> want to browse to overlay2 to check layers.. /diff folder etc. If i access /var/lib/docker folder - powershell complains that this folder does not exist. Other piece of info: I have already checked out the disk image location which is mapped for docker desktop. It is a vhdx file. I was not able to open it with Oracle virtual box - it says it is not a

Nested SSH with RSA key file

♀尐吖头ヾ 提交于 2020-08-26 07:00:09
问题 I am trying to nested SSH using Paramiko where I will connect to Server X from my local machine and from there I will connect to Server Y. Here to connect to Server X I am using username, password authentication and to connect to Server Y using username and RSA key. The thing is that the RSA key is hosted in System X which is used to connect Server Y. I was able to run the script successfully if I hosted the keyfile in my local PC and gave the local pc directory path to Paramiko SSH client.

Using BitBucket Pipelines to Deploy onto VPS via SSH Access

|▌冷眼眸甩不掉的悲伤 提交于 2020-08-20 18:08:27
问题 I have been trying to wrap my head around how to utilise BitBucket's Pipelines to auto-deploy my (Laravel) application onto a Vultr Server instance. I have the following steps I do manually, which I am trying to replicate autonomously: I commit my changes and push to BitBucket repo I log into my server using Terminal: ssh root@ipaddress I cd to the correct directory: cd /var/www/html/app/ I then pull from my BitBucket repo: git pull origin master I then run some commands: composer install ,