Category: Docker
Python for Algorithmic Trading – Conda as a Package Manager in Docker (2)
Python for Algorithmic Trading (1) Docker Container This section goes into the details of what the docker technology can do in the context of Python deployment. Building a Ubuntu and Python Docker Image This dockerfile control the building procedure for the image itself. The Bash script in below will be installing three parts: Linux housekeeping…
Python for Algorithmic Trading – Conda as a Package Manager (1)
There are tools and strategies available that help with the Python deployment issue. Package managers like pip or conda help with the installing, updateing, and removing of Python packages. They also help with version consistency of different packages. Conda as a Package Manager Although Conda can be installed alone, an efficient way of doing it…
Create Orchestration Tool (Jenkins) With Azure Cloud Infrastructure
I’m going to create a Jenkins to enable CI/CD Pipelines. Create a VM Create a Linux VM with the following specifications. Add an inbound security rule that allows access to your Jenkins VM on TCP port 8080. Install Docker and Jenkins Download and add Docker CE GPG key with the following command: Next, add the…
What is the difference between a Virtual machine and a container?
Containers and virtual machines have similar resource isolation and allocation benefits, but function differently because containers virtualize the operating system instead of hardware. Containers are more portable and efficient for this reason and too give us a better understanding of the differences between containers and virtual machines let’s look at a comparison of the two. Virtual…