Results for docker
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...
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...
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....
docker-compose.yml has something like this: version : "3" services: irbredis: image: redis:7.2.2-alpine container_name: irbredis irbserver...
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...
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...
I am getting the error: ERROR: The Compose file './docker-compose.yml' is invalid because: services.api.build contains unsupported option: 'additional...
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...
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...
I have the following docker-compose file... version: "3.8" services: cassandra: container_name: cassandra ...
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...
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 ...
Trying to connect to postgresDB from pgAdmin4. Both are conteinerised via docker compose and are in same network backend-db-prod launching script dock...
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...
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...
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...
I have the following docker-compose.yaml version: '3' services: webapp: image: example/webapp build: context: app restart: always...
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 ...
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 ...
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...
In my scenario, I aim to deploy Docker containers via Docker Compose across various environments, each with specific user requirements. Consequently, ...
I tried this Dockerfile FROM alpine AS build FROM scratch COPY --from=build /bin/sleep . CMD ["sleep", "infinity"] Build is passing, but after running...
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...
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...
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...
How do I undo the most recent local commits in Git?
How can I remove a specific item from an array in JavaScript?
How do I delete a Git branch locally and remotely?
How can I find all files containing a specific text (string) on Linux?
How to find all files containing specific text (string) on Linux?
How do I revert a Git repository to a previous commit?
How do I create an HTML button that acts like a link?
How do I check out a remote Git branch?