How should I approach a Docker upgrade?
An upgrade needs a compatibility check, a tested release and a recovery path. Which changes deserve particular attention before the new version reaches production?
ReadMeFeed / Community knowledge
Real questions. Useful conversations. Find the people who know your stack.
An upgrade needs a compatibility check, a tested release and a recovery path. Which changes deserve particular attention before the new version reaches production?
I got this error message when I try to run my container in Google Cloud Run. type: Ready status: 'False' reason: HealthCheckContainerError message: |- Cloud Run error: Container failed to start. Failed to start and then listen on the port defined by the PORT environment variable. Logs for this revision might contain more information. I already checked the fo
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?
Hi I have strange behavior of a traceroute to one of my public IP's In one of a line I have multiple hostnames with timing like in the folowing example, on the 5th line traceroute to dns.abc.com (111.222.333.444), 30 hops max, 60 byte packets 1 router.example.com (192.168.0.1) 1.137 ms 0.712 ms 0.641 ms 2 * * * 3 * * * 4 212.2.102.1 (212.2.102.1) 39.234 ms 3
I created my first organization and invited a user to it. The user receives the email invitation and appears as a member of the organisation and project. However, when they click join in the email invitation they are denied access . The organisation is not connected to Azure Active Directory as suggested in Invited user Azure Devops project but they are unab
Is there any way to disable SSL verification at installing some packages? I found how to add my certificate in trusted certificates, but I'd rather do disable this checking. I need it to avoid following error: SSL routines:tls_process_server_certificate:certificate verify failed
I'm making a Python script to use OpenAI via its API. However, I'm getting this error: openai.error.RateLimitError: You exceeded your current quota, please check your plan and billing details My script is the following: #!/usr/bin/env python3.8 # -*- coding: utf-8 -*- import openai openai.api_key = "<My PAI Key>" completion = openai.ChatCompletion.crea
I have used for a long time small subroutines to format axes of charts I'm plotting. A couple of examples: def format_y_label_thousands(): # format y-axis tick labels formats ax = plt.gca() label_format = '{:,.0f}' ax.set_yticklabels([label_format.format(x) for x in ax.get_yticks().tolist()]) def format_y_label_percent(): # format y-axis tick labels formats
Background I was about to try Python package downloaded from GitHub, and realized that it did not have a setup.py , so I could not install it with pip install -e <folder> Instead, the package had a pyproject.toml file which seems to have very similar entries as the setup.py usually has. What I found Googling lead me into PEP-518 and it gives some criti
commented · 18 Aug 2024, 21:56 UTC