Learncado
Learncado

Learncado brings together a vast collection of questions and answers. Expand your knowledge, learn new skills, and find solutions to your queries effortlessly. Enhance your learning experience and save valuable time by exploring our website today.

Resources

  • Questions
  • Question By Tags

Help and support

  • Contact
  • About

  • Geniecourse
  • Jetsodeals
  • Rentcado
  • Dealcado
© 2021-2023 Learncado All Rights Reserved.

Search Results (788)

Results for docker

November 28th, 2023
Anchors, aliases and interpolation in docker-compose.yml environment

Maybe I am addressing this in a totally wrong way, but I am trying to follow the first approach (reusing scalars) from this article. This is my stripp...

docker-compose
Read more
November 27th, 2023
Docker Advice: PHP Application

Any advice would be greatly appreciated. I'm containerizing our old legacy applications. I'm not sure what the best container setup would be, so far I...

dockerphpnginx
Read more
November 30th, 2023
Docker on windows wsl not running daemon

I few days ago I installed docker in my WSL version 2 on windows. On Ubuntu I used the following script provided by this page: https://nickjanetakis....

dockerwindows-subsystem-for-linuxinstallationdocker-daemondocker-machine
Read more
November 28th, 2023
Connecting Node.js to Redis within docker "Error: The client is closed"

docker-compose.yml has something like this: version : "3" services: irbredis: image: redis:7.2.2-alpine container_name: irbredis irbserver...

javascriptnode.jsdockerredis
Read more
November 26th, 2023
Getting: "CommunicationsException: Communications link failure" errors while connecting to a MySQL Docker container

pom.xml: "1.0" encoding="UTF-8"?> project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi...

dockerdocker-composemavenspring-boot
Read more
November 28th, 2023
Docker Tomcat Container giving 404 while running servlet

I am getting this error when I run my Docker container built using my application's war file: HTTP Status 404 – Not Found Description The origin serve...

javadockeramazon-ec2servletstomcat
Read more
November 25th, 2023
Docker Compose Unsupported Option 'additional_contexts'

I am getting the error: ERROR: The Compose file './docker-compose.yml' is invalid because: services.api.build contains unsupported option: 'additional...

dockerdocker-composelinuxcontainerscommand-line-interface
Read more
November 23rd, 2023
Interact with a Docker server from Flutter app for authenticating

I have created a server on Docker, and I'm able to perform queries from Postman, for example a POST at localhost:8000/api/sign-in/ with body containin...

dockerflutterdartauthentication
Read more
November 24th, 2023
No GPU support while running llama-cpp-python inside a docker container

I'm trying to run llama index with llama cpp by following the installation docs but inside a docker container. Following this repo for installation of...

dockerllamacppllama-cpp-pythoncublasblas
Read more
November 25th, 2023
How do I set the password with bitnami/cassandra:4.1 and Docker compose?

I have the following docker-compose file... version: "3.8"
 services:
 cassandra:
 container_name: cassandra
 ...

dockercassandrabitnami
Read more
November 22nd, 2023
Docker Nginx: Restrict access to container by IP address subnet

I already saw Restrict access by IP in docker nginx container, and Restricting access to a Docker container and similar questions. Here is the scenari...

dockernginxip
Read more
November 27th, 2023
Laravel Vapor + Docker, DomPDF not rendering custom fonts, works locally, not on staging

I am having some trouble getting custom fonts working with DomPDF and Laravel Vapor. (Localy the fonts work) These are my CSS font definitions (fonts ...

pdfphplaraveldompdflaravel-vapor
Read more
November 21st, 2023
Docker. Postgres. pgAdmin4

Trying to connect to postgresDB from pgAdmin4. Both are conteinerised via docker compose and are in same network backend-db-prod launching script dock...

postgresqldockerdocker-composepgadminpgadmin-4
Read more
November 20th, 2023
DJango and Docker: db shutting down and web service not accepting connections

I have a problem with Docker. I am trying to build a docker postgres DB and web service for a DJango app. Here is my config: Dockerfile: # syntax=dock...

postgresqldockerdjango
Read more
December 1st, 2023
Connecting to Android Emulator running inside docker container from host

I have a docker container that is running Ubuntu which in turn is running a headless instance of the Android emulator. I'd like to be able to connect...

dockerandroidandroid-emulatordocker-networking
Read more
November 22nd, 2023
Why does master node in redis cannot connect to port 6379 when running it in docker container?

When trying to run 3 redis instances as 3 docker containers (1 master node and 2 slave nodes) I get the following error for master node: 2023-11-18 11...

docker-composeredis
Read more
November 17th, 2023
nginx reverse proxy not finding backend service in docker-comopse

I have the following docker-compose.yaml version: '3' services: webapp: image: example/webapp build: context: app restart: always...

dockerdocker-composenginxcontainersnetworking
Read more
November 18th, 2023
Cannot access ASP.NET Core 8.0 app in Docker on the browser

I build a ASP.NET Core MVC app in DOT NET 8.0. Then added Dockerfile to it.The Dockerfile is given below: FROM mcr.microsoft.com/dotnet/aspnet:8.0 AS ...

dockerasp.net-coreasp.net-core-8
Read more
November 21st, 2023
Symfony run fails on docker installation

I get the following error when I try to run my Symfony project via docker compose. Here is the error: Script cache:clear returned with error code 255 ...

dockerdocker-composephpsymfonysymfony5
Read more
November 21st, 2023
I'm searching for the activation location of my PHP extension in my PHP Docker container

When I check the activated extensions in my php Docker container, the output lists several PHP modules, such as Core, ctype, curl, and others. the ext...

dockerdocker-composephpphp-extension
Read more
November 19th, 2023
How to extend docker compose files with smillar service names?

In my scenario, I aim to deploy Docker containers via Docker Compose across various environments, each with specific user requirements. Consequently, ...

dockerdocker-compose
Read more
November 20th, 2023
How to install "sleep" command for "scratch" docker image

I tried this Dockerfile FROM alpine AS build FROM scratch COPY --from=build /bin/sleep . CMD ["sleep", "infinity"] Build is passing, but after running...

dockerdockerfile
Read more
November 24th, 2023
Docker. How to remove bind mounts between host and container?

I've started a Docker container with a bind mount: docker run -it -v C:\host_folder:C:\container_folder mcr.microsoft.com/windows/server:ltsc2022 powe...

dockerdocker-containerdocker-for-windowsdocker-volume
Read more
November 18th, 2023
c# Log4Net not writing file/console in docker

I wrote a c# (.NET 6.0) console application which is a queue consumer and writes dequeued messages into log file. Everything is fine in local but as i...

dockerlog4net
Read more
November 20th, 2023
Facing issues while running the docker image created by jlink

The application was running properly in eclipse and also as a jar file. Once the docker image is created using jlink the spring boot application start...

dockerspring-boot
Read more

Hot Topic

  • 25881

    How do I undo the most recent local commits in Git?

  • 11618

    How can I remove a specific item from an array in JavaScript?

  • 20343

    How do I delete a Git branch locally and remotely?

  • 7387

    How can I find all files containing a specific text (string) on Linux?

  • 7330

    How to find all files containing specific text (string) on Linux?

  • 7611

    How do I revert a Git repository to a previous commit?

  • 2671

    How do I create an HTML button that acts like a link?

  • 8481

    How do I check out a remote Git branch?