here is what i did to get my docker client working with docker-credentials-pass.
- Install pass
sudo apt-get install pass
- Download, extract, make executable, and move docker-credential-pass
| # Git Checkout All Plugin | |
| # Author: | |
| # Description: Checkout the same branch across all repositories in current directory | |
| # | |
| # Features of this plugin: | |
| # | |
| # Enhanced error handling - Checks if directories and branches exist | |
| # Remote branch support - Automatically creates local branches from remote if they exist | |
| # Progress indicators - Shows success/failure with emojis and counts | |
| # Multiple useful functions: |
| <?php | |
| function findUniqueNumbers(array $numbers) : array | |
| { | |
| foreach ($numbers as $k => $val){ | |
| if(!isset($numbers[$k])) continue; | |
| $found = false; | |
| for ($j = $k + 1; $j < count($numbers); ++$j) { | |
| if (isset($numbers[$k]) && isset($numbers[$j]) && $numbers[$k] === $numbers[$j]) { | |
| $found = true; |
| FROM webdevops/php-apache-dev:7.4 | |
| # add microsoft packages to apt sources | |
| RUN curl https://packages.microsoft.com/keys/microsoft.asc | apt-key add - | |
| RUN curl https://packages.microsoft.com/config/debian/9/prod.list > /etc/apt/sources.list.d/mssql-release.list | |
| # install needed system packages as well as a few nice to have utils | |
| RUN DEBIAN_FRONTEND=noninteractive apt-get update && \ | |
| DEBIAN_FRONTEND=noninteractive apt-get -y upgrade && \ | |
| ACCEPT_EULA=Y apt-get -y install msodbcsql17 unixodbc-dev less joe iputils-ping traceroute telnet && \ | |
| apt-get purge -y --auto-remove && \ |
| <?php | |
| require "mysql_mysqli.inc.php"; | |
| // ===== configration part starts ===== | |
| $for_real = true; // execute DDL statements | |
| $verbose = true; // show DDL statements | |
| $db_host = "localhost"; | |
| $db_user = "root"; |
| #!/bin/sh | |
| docker network create -d bridge --subnet 172.18.0.0/16 \ | |
| --gateway=172.18.0.1 \ | |
| --opt com.docker.network.bridge.enable_icc=true \ | |
| --opt com.docker.network.bridge.enable_ip_masquerade=true \ | |
| --opt com.docker.network.bridge.host_binding_ipv4=0.0.0.0 \ | |
| --opt com.docker.network.driver.mtu=1500 \ | |
| --opt com.docker.network.bridge.name="docker1" \ | |
| dev |
| <?php | |
| $sm = Schema::getConnection()->getDoctrineSchemaManager(); | |
| $idxVouchers = $sm->listTableIndexes('vouchers'); | |
| if(array_key_exists('vouchers_voucher_type_id_index', $idxVouchers)) { | |
| //index exists | |
| } else { | |
| //index not exists | |
| } |
here is what i did to get my docker client working with docker-credentials-pass.
sudo apt-get install pass
| Satoshi Nakamoto stands at the end of his sunbaked driveway looking timorous. And annoyed. | |
| He's wearing a rumpled T-shirt, old blue jeans and white gym socks, without shoes, like he has left the house in a hurry. His hair is unkempt, and he has the thousand-mile stare of someone who has gone weeks without sleep. | |
| He stands not with defiance, but with the slackness of a person who has waged battle for a long time and now faces a grave loss. | |
| Two police officers from the Temple City, Calif., sheriff's department flank him, looking puzzled. "So, what is it you want to ask this man about?" one of them asks me. "He thinks if he talks to you he's going to get into trouble." | |
| "I don't think he's in any trouble," I say. "I would like to ask him about Bitcoin. This man is Satoshi Nakamoto." |
This script will install the latest version of the 2.7.x branch of Python alongside the system Python in the users local directory and it will symlink all the binaries in ~/bin
Any app or daemon that you require to run with the latest Python just run it as either the separate user or make sure it is running from the Python linked into `/bin
install-python.sh <version> <path>