How can I make a pandas setup reproducible?
The same project needs to behave consistently on developer machines, in CI and after deployment. Which versions, dependencies and configuration should be recorded?
ReadMeFeed / Community knowledge
Real questions. Useful conversations. Find the people who know your stack.
The same project needs to behave consistently on developer machines, in CI and after deployment. Which versions, dependencies and configuration should be recorded?
I'd like to use IMDSv2 inside a container running on an EC2 instance. I want to use the tokens because they are required in my metadata options: metadata_options { http_tokens = "required" http_endpoint = "enabled" } Calling the API from the EC2 instance returns my token as expected. curl -s -X PUT "http://169.254.169.254/latest/api/token" -H "X-aws-ec2-meta
I am trying to learn Docker and created my first Docker compose file. Basically, I am trying to create a Django web microservice and use docker compose file to manage it. Here is my code for my docker-compose.yml : version: "3" services: app: build: context: . ports: - "8000:8000" volumes: - ./app:/app command: > sh -c "py manage.py runserver 0.0.0.0:8000
Recovery needs to recreate the working service and its required data after a machine or process is lost. Which artifacts and state need protection, and how should the restore be checked?
Configuration must be available to the application without exposing credentials in source control, logs or browser code. What belongs in the runtime and which access controls matter?
The same project needs to behave consistently on developer machines, in CI and after deployment. Which versions, dependencies and configuration should be recorded?
Previously when using Azure Blob Storage SDK V11, if you wanted to Create a container but were unsure if the container existed you could use CreateIfNotExists. However in version V12, CreateIfNotExists is no longer available and the only example I can find from Microsoft is to simply create a Container without checking if it already exists. So, does anyone k
I'm trying to deploy a single web application to Minikube on my Mac, and then access it in the browser. I'm trying to use the simplest of setups, but it's not working, I just get a "connection refused" error and I can't figure out why. This is what I'm trying: $ minikube start --insecure-registry=docker.example.com:5000 😄 minikube v1.12.3 on Darwin 10.14.6 ✨
I'm investigating a way of deploying an Angular or React web application on Google Cloud using GCS, Load Balancer, and CDN. I've set up the LB and the GCS using the urlRewrite , but since the LB does not allow full URL rewrite only pathPrefixRewrite , I cannot redirect all the requests to /index.html I want to achieve the same functionality as firebase hosti