Results for docker-compose
I am trying to create a Docker container where I want to run a LimaCharlie Adapter that receives syslog. However when I try to build the Docker contai...
I had my Dockerfile working when I used to copy my source code inside container, then build it and finally launch. Afterwards I decided that it takes ...
I can build a simple REST API endpoint with ASP.NET Core: $ rm -rf PPP && mkdir PPP && cd PPP # $ dotnet new web 1>/dev/null $ dotnet run Building......
I'm beginner in docker, so I probably don't understand how it should work. I have loki container - here is part of docker-compose.yml: loki: image: ...
I am new to Docker. I want to containerise a small environment so that I can run executables, but I am stuck because I can't even get an executable to...
# Build runtime image FROM mcr.microsoft.com/dotnet/aspnet:8.0.0-windowsservercore-ltsc2022 WORKDIR /App #mount a volume to folder App ENTRYPOINT ["do...
I am encountering an error when my WebAPI project attempts to access MongoDB. Both of these applications are in the same container network, and this s...
I have this Docker image FROM debian RUN apt-get update \ && apt-get install -y \ autoconf \ build-essential \ bc \ curl \ g...
I have a string that I can parse with these statements var allowedStyles = NumberStyles.Number; CultureInfo cultureInfoDe = new CultureInfo("de-DE...
I'm trying to set up a documentation for our app on the same domain, using Vitepress. Locally, I can run our app on port 5173 and the Vitepress docume...
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 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 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...
I have a rather strange problem that I can't explain. Context: as part of a project, I created a webscraping script (Selenium + Beautifulsoup) to retr...
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...
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?