Create new docker volume in specific path.
mkdir -p /mnt/xxxx/volume/data
I hereby claim:
To claim this, I am signing this object:
| <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://service.sunat.gob.pe" xmlns:ns2="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd"> | |
| <SOAP-ENV:Header> | |
| <ns2:Security> | |
| <ns2:UsernameToken> | |
| <ns2:Username>20000000001MODDATOS</ns2:Username> | |
| <ns2:Password Type="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#PasswordText">moddatos</ns2:Password> | |
| </ns2:UsernameToken> | |
| </ns2:Security> | |
| </SOAP-ENV:Header> | |
| <SOAP-ENV:Body> |
| docker run -t --rm -v "${pwd}":/appc certbot/certbot certonly --manual --preferred-challenges=dns --email admin@domain.com --agree-tos --config-dir /appc/config --logs-dir /appc/logs --work-dir /appc/workdir -d *.domain.com |
| alias gs='git status' | |
| alias ga='git add' | |
| alias gl='git pull' | |
| alias gp='git push' | |
| alias gc='git clone' | |
| alias gck='git checkout' | |
| alias ga='git add' | |
| alias grh='git reset HEAD~1' | |
| alias gm='git merge' | |
| alias gcm='git commit -m ' |
| Windows Registry Editor Version 5.00 | |
| [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Folder\shell\PHP Server] | |
| [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Folder\shell\PHP Server\command] | |
| @="C:\\xampp\\php\\php.exe -S 0.0.0.0:8000 -t %1" |
| <Target Name="BeforeBuild"> | |
| <Copy SourceFiles="$(ProjectDir)\database.default.config" DestinationFiles="$(ProjectDir)\database.config" Condition="!Exists('$(ProjectDir)\database.config')" /> | |
| </Target> |
| <?xml version="1.0" encoding="UTF-8"?> | |
| <connectionStrings> | |
| <add name="default" connectionString="Data Source=.;Initial Catalog=DB_A;" providerName="System.Data.SqlClient" /> | |
| </connectionStrings> |
| <?xml version="1.0" encoding="UTF-8"?> | |
| <configuration> | |
| <connectionStrings configSource="database.config" /> | |
| </configuration> |