I am deploying an application to Azure from a container and an image stored in DockerHub. When I deploy the repository in the DockerHub is public so I can easily deploy it. However, I would like to have the repository private and still be able to deploy it. Can I somehow pass my credentials for ..
Category : azure
a bit of context, I’m starting with the devOps, and create a docker-compose.yml to lift two containers, one with my mongodb and one with the express framework mongo-express, but now I want to bring it to my cloud in Azure, but the The truth is that the documentation is very limited and they do not ..
I want to deploy monitoring dashboards using Grafana as web apps using Azure-cloud and share them with my team members. But I found some problem: (1) In Docker-compose, Grafana needs volumes to store data. (2) So I made Azure Storage & File share. And mapping path this storage to Webapp. Storage Mount is as follows. ..
I’m trying to build a docker image for elasticsearch and deploy the image (to an Azure registry and have it run as an Azure Web App). I’ve done this fine with a Dockerfile, but can’t work out how to do it with a docker-compose.yml file. Here’s my docker-compose: version: ‘3.8’ services: elasticsearch: container_name: elasticsearch image: ..
Azure Service Fabric is a cool product to do microservices, but is it fair to say that Microsoft is putting more energy into making Azure Kubernetes Services more popular and will stop adding new features to Service Fabric at some time and Service Fabric will slowly phase out? I might be wrong, looking for some ..
I have build docker image from belo folder structure and trying to enable the SSH into docker container as per Enable SSH in custom container folder: –Dockerfile –sshd_config –web-app.jar FROM rocker/r-ubuntu:20.04 LABEL maintainer="Utkarsh Saraf" ARG DEBIAN_FRONTEND=noninteractive RUN apt-get update && apt-get upgrade -y && apt-get install -y software-properties-common apt-utils libxml2-dev openjdk-8-jdk build-essential libcurl4-gnutls-dev libssl-dev openssh-server ..
I have an ASP.NET API that launches a bot to handle client transactions. The process is slow when there are several transactions that need to be implemented simultaneously. Everything is coded in C#. I’m wondering if Kubernetes is a viable solution. I would like to be able to make an API Call which will launch ..
I’m building multiple projects using a single docker build, generating an image and pushing that into AWS ECR. I’ve recently noticed that builds that were taking 6-7 minutes are now taking on the order of 25 minutes. The Docker build portion of the process that checks out git repos and does the project builds takes ..
I want to build Docker images to run on ARM platforms using an Azure Pipeline. I can easily build images for Intel but I do not find a proper and up-to-date guide on how to configure the pipeline to build images for ARM. How to build a Docker image for Raspberry Pi using an Azure ..
Newbie Azure Container question here. I am trying to run an Azure tutorial at the link below. https://docs.microsoft.com/en-gb/azure/container-instances/container-instances-tutorial-deploy-app I have a sample container that runs perfectly on my laptop (MacBook M1). I have followed instructions to successfully deploy it to Azure Container Registry. But then, when I try to run it on Azure it won’t ..