Click here to Skip to main content
15,889,216 members
Everything / Containers / Docker

Docker

docker

Great Reads

by Juan G. Carmona
Advanced logging in modern .NET applications. A Sunday-morning-proof-of-concept.
by Andi Kleinbichler
Illustrates the implementation of a .NET Core app, running in a Linux container, connecting to a SQL Server database with integrated security.
by Dave Kerr
If you are looking to get your hands dirty and learn all about Docker, then look no further!
by Jose Motta
Home of Things based on Raspberry Pi, Linux, Swagger, Docker & .NET Core

Latest Articles

by Pranay Bakre
How to deploy applications to the Azure Kubernetes Cluster powered by arm64-based virtual machines
by Pranay Bakre
How to migrate existing x86 containerized applications to Arm
by Pranay Bakre
How to build and deploy a multi-architecture application with x86/amd64 and arm64-based container images on Amazon EKS
by GabrieleTronchin
The Docker context command simplifies the configuration and switching between contexts.

All Articles

Sort by Updated

Docker 

N 27 Apr 2024 by Pete O'Hanlon
The likeliest scenario is that you haven't authenticated with the vault. You should look into DefaultAzureCredentials. I had to guess what the problem is because you supplied no code, no docker configuration, and no evidence of any error messages.
U 27 Apr 2024 by Benjie Fallar III
I'm creating a Spring boot application that connecting to Azure Vault to get configurations. But when my project running inside Docker is running, it failed as it connect connect to the Azure vault. Is there anything I missed in my Dockerfile? ...
13 Apr 2024 by Richard MacCutchan
Please post your question in the CodeProject.AI Discussions[^] forum.
13 Apr 2024 by Member 16044303
My question : Is it possible to have this configuration and the system work correctly ? Because my GPU is every time at 0% usage and I have test lot of driver, cuda and codeproject ai version and event my GPU is at 0% usage... I don't know if...
10 Apr 2024 by Pranay Bakre
How to deploy applications to the Azure Kubernetes Cluster powered by arm64-based virtual machines
9 Apr 2024 by Pranay Bakre
How to migrate existing x86 containerized applications to Arm
8 Apr 2024 by Pranay Bakre
How to build and deploy a multi-architecture application with x86/amd64 and arm64-based container images on Amazon EKS
3 Apr 2024 by GabrieleTronchin
The Docker context command simplifies the configuration and switching between contexts.
23 Mar 2024 by Pete O'Hanlon
For questions about Codeproject.AI, you should ask in this forum[^]. That's where the cool kids hang out.
22 Mar 2024 by Member 16228630
Hi everyone. CodeProject environment: -hw:raspberry PI5 8G+CoralUsb -latest pi os lite 64Bit -latest docker engine Downloaded and installed the rpi64 2.5.6.1 docker image. Disabled all modules and activated only the coral module (disable GPU,...
22 Mar 2024 by Mohammad Elsheimy
Configuring OpenSSL minimum version and legacy renogetiation
28 Feb 2024 by Tobus0
Hello, after upgrading today to the new Ai version, my docker container fails to start with following error; /bin/bash: line 1: pstree: command not found Unhandled exception. System.Collections.Generic.KeyNotFoundException: The given key...
28 Feb 2024 by Dave Kreskowiak
You should ask your question in the dedicated CodeProject.AI Discussions[^] forum.
23 Feb 2024 by Mohammad Elsheimy
One of the major issues encountered when connecting to databases after porting ASP.NET app to Docker Linux containers.
19 Jan 2024 by bmw318mt
Yes I am sure database could be reached. Out of 3000 tests some are failing randomly with Sql timeouts. Below is the method I am using to open the DB connection private DbConnection GetDBConnection() { var db =...
19 Jan 2024 by bmw318mt
I have tests executing that are using an SQL database hosted on Docker. I am facing timeout issues on some tests var msSqlContainer = new ContainerBuilder() .WithImage("mcr.microsoft.com/mssql/server:2017-latest")...
4 Jan 2024 by OriginalGriff
This would be better posted in the dedicated forum: CodeProject.AI Discussions[^]
4 Jan 2024 by Leonid Shvarzberg
I am currently using codeprojecAI ver 2.3.2-Alpha. I saw a message that "A new version 2.3.4-Beta is available" I wanted to update to this version. After I run "docker-compose up -d", the system pulls images but in the end I still have 2.3.2 ...
18 Dec 2023 by Intel
Fast and Easy Training and Inference Using Intel® Consumer GPUs and Windows* Subsystem for Linux 2
17 Nov 2023 by Andre Oosthuizen
Quote - "Quote: ArgumentException: Unable to find font Calibri or fallback font Microsoft Sans Serif. Install missing fonts or specify a different fallback font through 'LoadOptions.DefaultGraphicEngine = new DefaultGraphicEngine("Fallback font...
17 Nov 2023 by xTMx9
Hello, I am using the ClosedXML library in my project and everything works with no issues locally but when I push and publish the app, I receive the following error when I try to access a page that uses the library's functionality. This is what...
8 Nov 2023 by Richard MacCutchan
It may be that your version of Linux is not supported. It is always best to stay away from Youtube when learning new products, and use instead the official documentation: Install Docker Desktop on Linux | Docker Docs[^].
8 Nov 2023 by Sean Ewington
In this article, I guide you through installing Docker, then running CodeProject.AI Server in Docker.
8 Nov 2023 by folza
Hello Guys! I have MX Linux 23 on my computer and I want docker on it. I followed the installation instructions at: How to Install Docker on MX Linux 23 | Docker Install Guide | Docker Linux Installation | Bookworm - YouTube[^] What I have...
7 Nov 2023 by Michael Gledhill
A cheatsheet for getting your Web APIs up and running as quickly and painlessly as possible
24 Oct 2023 by Dub Andrei Manuel
This short tutorial aims to inculcate in the reader's mind a meaningful intuition to get around known Docker misconceptions.
29 Aug 2023 by Richard MacCutchan
Please post your question in the CodeProject.AI Discussions[^] forum.
29 Aug 2023 by DaxSalmon
I am running Codeproject.ai in a Docker container on an Ubuntu 22.04 machine. The machine has 2 nvidia tesla k80s installed. Both cards are functioning properly. I am currently using Codeproject.AI with Blue Iris and everything is running fine...
30 May 2023 by stdout
Hi all, i need to deploy a .NET Core WebApi project to an dedicated VM with IIS. The build step works and puts all into a .zip package. The VM and WebDeploy Agent is configured and works well deploying via msdeploy from my local...
29 May 2023 by André Marcos (Advisor), William Caetano Cardenas
Prototyping a Web System to Schedule Patients in Local Medical Clinics Oriented by Test Driven Development Guidelines Supported by PHP, PHPUnit and Symfony Framework Technologies
22 May 2023 by ashu1810
I have a Dot net application when run locally it launches on url http://localhost:59901, and I am trying to dockerize this application. below is the docker file, I have pulled all the dependent images before these line in docker file. ENV...
22 May 2023 by Andre Oosthuizen
"EXPOSE 8080" indicates that the application will listen for incoming network traffic on port 8080. When running on localhost, you had :59901 port listening in, this means that you have another application that already makes use of port 8080,...
11 May 2023 by bhupeshkietian
Learn how to set up a fresh Ubuntu installation with Docker, enabling you to leverage the power of containerization for efficient development and deployment.
3 May 2023 by gunnar 2023
please add example of docker-compose What I have tried: please add here Running CodeProject.AI Server in Docker - CodeProject.AI Server v2.1.0[^] example of docker-compose for codeproject ai. thank you
3 May 2023 by OriginalGriff
You need to address this to the right people - this is a general purpose forum, so it's unlikely they will ever see it. Instead, post your request here: CodeProject.AI Discussions[^]
26 Apr 2023 by Aimée Marnelle Mbenguet
Hi, I'm Marnelle, I have a problem with the configuration of a rabbitmq docker on my asp.net core project and I would like to get help from you. being new in the field I try to configure rabbitmq on a solution, after research I learned that I...
5 Apr 2023 by Apurva Kunkulol
Description: I have a simple Python script that tries to check whether ClamAV is "inactive" in the container and if it is then it attempts to start it using import os os.popen("systemctl start...
20 Mar 2023 by Bogdan Marian
Ensure your Docker Compose services start in the correct order
9 Feb 2023 by Sean Ewington
Here is the bare bones, fastest way to install Home Assistant on Windows, and add a Wyze Cam v3 to it.
1 Feb 2023 by Sean Ewington
In this article, I will show you how to install Home Assistant Container on Windows, using Docker and Portainer, get it working with Agent DVR, and send an MQTT message from Agent DVR using CodeProject.AI Server to detect a person.
28 Jan 2023 by salam_verdim_alana_panyatkasi_olana
I have a project with Spring Boot MVC and Mysql Database with dockerfile and docker-compose.yml and I want to push this project to the hub docker that to run every client as you know. but I couldn't this when I push to the hub docker and pull...
20 Jan 2023 by Afzaal Ahmad Zeeshan
How to efficiently create Docker images using Node.js web app
17 Jan 2023 by Дмитрий Меланьин
Hi, dockerhub recently was updated with newer version of AI, but GPU image is arm64 and no amd64 avail. Is there a plan to have amd64 also, or it is just build mistake? What I have tried: Pulling and running codeproject/ai-server:gpu-2.0.6 ...
17 Jan 2023 by Richard MacCutchan
Try posting the question at CodeProject.AI Discussions[^].
18 Dec 2022 by Member 15868733
everyone I'm working on a small project where I already did the backend and nginx configuration with docker Now I want to add frontend created by react this is the project architecture Docker-compose Dockerfile (1) docker (folder) ...
9 Dec 2022 by salam_verdim_alana_panyatkasi_olana
I'm talking about docker right now. I was wondering why there are not only images but also containers here? I understand that container that runing from instance of image. Okay, we get that, so why do we need this separately? Wouldn't it be right...
9 Dec 2022 by Afzaal Ahmad Zeeshan
Your question is unclear. The computer world has more than 2 things—while bit states can be only 2; 0, and 1. The concept of images and containers is the same as class and objects. You write the class in your Java file, and when that code runs,...
7 Dec 2022 by Member 15435238
Any idea about this error in gitlab-ci. Seems like the version of debhelper is not proper and I am not able to figure out what should be right version for this. Or there might be some other issue as well. Can anyone tell me what is the issue with...
6 Dec 2022 by Member 15435238
I am new to gitlab-runner and docker. I am trying to automate my project using CI/CD pipelines. I am referring to this article. (But I have modified Dockerfile and setup.sh a bit as the post is too old hence some of the things were not working or...
1 Dec 2022 by DotNetLead.com
Deploy existing ASP.NET Core UI, API, and SQL Server to Docker containers
30 Nov 2022 by Sean Ewington
This article is a step by step guide on how to run a custom model folder in Docker using CodeProject.AI Server.
23 Nov 2022 by alirıza adıyahşi
Creating a web farm on Docker container using redis, haproxy and abp module zero core template
18 Oct 2022 by Rajesh Yerramsetti
I am getting below error while creating image in local machine. Please help on this. C:\Program Files\Docker\Docker\devops-master-class-master\projects\hello-world\hello-world-python>docker build -tag in28min/Hello-world-java:0.0.2 RELEASE ....
18 Oct 2022 by Dave Kreskowiak
It's probably because you have to specify the "-tag" option as "--tag" instead. Read the "docker build --help" again.
15 Oct 2022 by tvtoanitvn
I have three servers: 1 master: 192.168.1.131 k8s 1 node: 192.168.1.132 k8s 1 rancher: 192.168.1.133 rancher 2.6 I have created a docker image (private registry docker) on the node used 192.168.1.132:5000/test. Both master and node pushed and...
3 Sep 2022 by PascalLandau
How to create VMs, use a container registry and a secret manager
17 Jul 2022 by DiponRoy
How to run FTP, SFTP, SMTP, Cache, LDAP, SSO and other servers in Docker
6 Jul 2022 by DiponRoy
Quick start example to run DB and clients in docker
1 Jul 2022 by Gerard Castelló Viader
A news tracking or news aggregator website that allows users to share content they find on the Internet and give it certain visibility
26 May 2022 by Aman Bhargava from Unknown
I have deployed a nodejs application using nginx, pm2 and docker. The problem i am facing is that whenever i hit certain endpoints which certainly have some bug, whole of the server goes down giving 502 bad gateway. What I have tried: I tried...
2 May 2022 by PascalLandau
How to setup CI pipeline to run code quality tools and tests on Github Actions and Gitlab Pipelines
1 May 2022 by PascalLandau
How to setup git-secret to store secrets directly in the repository
1 May 2022 by PascalLandau
In the fifth part of this tutorial series on developing PHP on Docker we will setup some PHP code quality tools and provide a convenient way to control them via GNU make.
23 Feb 2022 by Syed Shoaib 2022
I have even tried all the powershell based commands and it doesn't work What I have tried: I have even tried all the powershell based commands and it doesn't work
23 Feb 2022 by Maciej Los
Follow the instructions from Microsoft: Prep Windows operating system containers | Microsoft Docs[^] Quote: To install Docker on Windows Server, you can use a OneGet provider PowerShell module published by Microsoft called the...
18 Feb 2022 by Danpeking
Ok, I have discovered that the website loads fine if I turn off the Wifi on my phone. My network seems to be 'blocking' the website somehow.
16 Feb 2022 by Danpeking
I have created a couple of C# .NET 5 websites and deployed them via Kestrel to my Raspberry Pi. I am using Docker and the setup I have is: Website1 - uses port 5000 and port 5001 (https) Website2 - uses port 5002 and port 5003 (https) I...
16 Feb 2022 by Danpeking
I have got round the error by preventing HTTPS but unfortunately the page still doesn't load.
31 Jan 2022 by Eric Walter
This blog is about creating an image in Docker using Python.
26 Jan 2022 by Member 15514474
I need assistance with smtp when i run the below code using localhost (xampp) it send emails but when I run in on the docker image it give me this error message: SMTP NOTICE: EOF caught while checking if connected 2022-01-27 09:18:14 SMTP Error:...
14 Jan 2022 by Jason Sultana
How to get Puppeteer working under Docker
27 Dec 2021 by Member 15435238
I have a springboot application which is running well on docker and I am able to access it from the Chrome browser installed on my laptop. But now I want to install a browser(chrome/firefox) on docker so that when I do docker-compose up, then at...
21 Dec 2021 by Member 15435238
I am new to dockers and continuously trying to learn it. I am getting the mysql-standalone_1 | nc command is missing! and I am unable to get how to resolve it. The scenario is my app should wait for MySQL to start getting connections and before...
21 Dec 2021 by QuantumPlumber
We probably need to see the contents of wait_for.sh to be able to help.
13 Dec 2021 by Member 15435238
I am working on an springboot application(Rest) and using eureka-netflix server with it. Although application is working the way it is required to work but I am getting this error in Eureka-server logs. c.n.d.s.t.d.RedirectingEurekaHttpClient ...
24 Nov 2021 by Member 15435238
Hey coders, I am new to dockers. I need to dockerize an springboot application which further connects to a MySQL db. I am getting this error in docker logs of container of my springboot application. I am sure there is just a small mistake I am...
27 Sep 2021 by Uladzislau Baryshchyk
Examples of questions and examples of services for passing AWS cloud Developer Associate exam
20 Sep 2021 by Member 11466758
We have pushed docker images in ecs container on aws server. We have updated the code and deployed on aws server through docker images. But changes are not relecting post deployment. Is there any issue with deployment or with docker image? What...
9 Sep 2021 by Varun@vin
Hi, I am able to containerize .net core application with self signed certificate and able to connect to the one of the controller using https. Below is the docker file. FROM mcr.microsoft.com/dotnet/core/aspnet:3.1 AS runtime WORKDIR /app ...
9 Sep 2021 by Dave Kreskowiak
Google for "Docker container has no internet" and start reading. There's a bunch of things it can be, and you're going to have to do the work of troubleshooting. Nobody can do it for you.
5 Sep 2021 by Member 15348209
The following three containers are managed in docker-compose. 'docker-compose up' solves all 3 containers with no errors, and my application works properly when 'docker swag flag -f' is called. I followed these instructions to set up and edit the...
30 Aug 2021 by Uladzislau Baryshchyk
An overview of AWS Elastic Container Registry (ECR) and Elastic Container Service (ECS)
3 Aug 2021 by Sergey L. Gladkiy
In this next article of the series, we’ll show how to run the face recognition servers on Kubernetes.
29 Jul 2021 by Sergey L. Gladkiy
In this article we create a Docker container for this system.
16 Jul 2021 by TheBigBearNow
Hello all, This is my first time using a docker-compose file. I have multiple projects (solutions) to make my project work, API, MVC, Gateway, they are all in their own solution. I would like my docker-compose in my MVC(front-end) project to be...