32,398 questions
0
votes
0
answers
120
views
Issues trying to use nestjs+rabbitmq
I'm trying to communicate my microservices using rabbitmq(a docker container of that service). So every time I run my app it deliver
[Nest] 18 - 04/12/2025, 12:58:29 PM LOG [NestFactory] Starting ...
0
votes
0
answers
41
views
Failed to determine a suitable driver class in Jenkins
I am running Jenkins pipeline on my local machine (Windows). And all the services are configured to run in Docker containers using Docker Compose. I am using JDK 21.
pom.xml
<dependency>
<...
1
vote
0
answers
167
views
Unable to create user for an oracle db running in docker container
I've got an Oracle FREEPDB running in Docker, and I would like to create a user with appropriate Roles & Grants when the database is initialized. I have a docker-compose.yml:
services:
oracle-...
0
votes
0
answers
81
views
Is it possible to host a .NET application that is inside a docker container on IIS?
I have an application built with .NET 8 and MySQL 8.0 inside on docker container, and I need to deploy this container on IIS so that each user can access it via IP on the local network. My question is:...
0
votes
0
answers
21
views
Docker Compose: MongoDB Connection Error - MongoNetworkError Failed to Connect to Server
I am currently trying to install the Docker version of Tiledesk.
I am using the instructions: https://github.com/Tiledesk/tiledesk/blob/master/docker-compose/README.md
All containers have been created,...
1
vote
1
answer
95
views
static html page not accessible
I want to use a static HTML page in my docker to show logfiles via websockets and FastAPI inside a docker container. As FastAPI has already a webserver, I mount my static page with:
root_path = "/...
0
votes
1
answer
67
views
Error Dockerizing a Spring Boot + MySQL Application
I have a REST API built with Spring Boot that connects to a MySQL database running in a Docker container. The application works fine. Now I'm trying to deploy the API using Docker Compose, but I get ...
0
votes
0
answers
33
views
How to automate ollama server and ollama run mistral command in my docker compose? [duplicate]
I'm building an application with Spring AI. I've already integrated the mistral model into my container! But I do it using a command inside the container, and it works perfectly. I want to automate ...
1
vote
1
answer
74
views
How do I pass a variable in the command line for use in the `command:` field of docker-compose.yml?
I have a docker-compose-test.yml like so:
services:
environment-service:
image: ubuntu:24.04
command: "echo 'you should see string as the next string: $DRYRUNG'"
I run it like so:
...
0
votes
0
answers
81
views
org.apache.kafka.connect.errors.ConnectException: Configured primary key mode 'record_key' cannot have null schema at io.debezium.connector.jdbc.Sink
I am working on a Proof of Concept (PoC) where I am streaming data from a source database into a Kafka topic using Change Data Capture (CDC). The data is successfully being captured in the Kafka topic....
-1
votes
1
answer
164
views
docker-compose can't find my env variables
I tried to set up a project on a ec2 instance, for that I prepare a new docker-compose, when I up the project, I get this warning message
WARN[0000] The "REACT_APP_API_URL" variable is not ...
0
votes
1
answer
79
views
How to bind mount to a path containing a colon (:) in docker compose [closed]
I have an obscure situation where I need to bind mount to a directory /foo/bar:baz inside a container.
Attempting something like this doesn't work because the : is interpreted as something other than ...
0
votes
1
answer
63
views
running localstack on docker compose throws java.net.UnknownHostException: module-1.localstack exception
I am running spring boot application and localstack with docker compose, it seems that I configured correctly but still throws the exception. my compose file:
version: '3.9'
services:
localstack:
...
0
votes
0
answers
105
views
Docker: Error while dialing: dial unix /AppData/Local/Docker/run/userAnalyticsOtlpHttp.sock: connect: A socket operation encountered a dead network
I am new to Docker using Docker desktop on Windows 10. Docker "Hello World" works. I am trying to dockerize a Django/Postgres project using a yml file. The containers are created, can be ...
0
votes
1
answer
30
views
Docker-compose gitlab pull forbidden
I have strange issue when using docker-compose to get images from gitlab registy.
Docker login works well, even docker pull goes without error but
docker-compose pull <myimage> return denied: ...
0
votes
0
answers
84
views
Unable to Export CVAT Annotations to S3 or Download Locally
I am running CVAT on a VM and attempting to export annotations to (lakefs, hosted by my organization) S3 cloud storage. However, I encounter an AccessDenied error, despite being able to upload to the ...
1
vote
0
answers
43
views
Node_modules are not installing in my directory after running "RUN yarn" in my Docker-File
I am currently using Docker container to run my Backend code. But node modules are not installed even my Docker-file has "RUN yarn" command. This is my Docker-File
FROM node:18-alpine3.18
...
0
votes
1
answer
129
views
Why does docker compose confuse with the same service name in two different docker-compose.yml files (for 2 different apps)
I want to start two apps on the same machine, one is ragflow the other is dify. Their docker-compose.yaml files both define the redis service.
Ragflow defines as following
redis:
# swr.cn-north-...
0
votes
0
answers
84
views
Azure docker compose translator issue: Problem downloading language models
azure-ai-translator:
container_name: azure-ai-translator
image: mcr.microsoft.com/azure-cognitive-services/translator/text-translation:latest
environment:
- EULA=accept
- ...
1
vote
0
answers
57
views
Consul returns container ID instead of hostname when using Service Discovery in Docker (Ocelot + Consul)
I'm using Consul for service discovery in a Docker Compose environment. However, when my API Gateway (using Ocelot) tries to call a service, Consul returns the container ID instead of the expected ...
1
vote
0
answers
128
views
cant resolve domain names while docker compose build
I'm encountering an issue when building Docker images using docker compose build. The build process fails with the following error:
curl: (6) Could not resolve host: deb.nodesource.com
This issue ...
0
votes
2
answers
522
views
How to stop/kill docker compose project?
I'd like to kill/stop/down the whole compose project without having to kill or type each individual containers.
I get the the project's name using docker compose ls.
$ docker compose ls
NAME ...
0
votes
0
answers
93
views
Files encoding changes after mounting to docker-container
The essence of the problem: when connecting via ssh to docker container with a Python environment, all files mounted in it are processed in ASCII encoding for some reason. The files themselves have ...
-1
votes
1
answer
60
views
Cannot connect to websocket
I have app on Django Channels that use Daphne as a termination server and hosted on AWS EC2. So problem is, when i run app locally(or via ngrok) and try to connect everything is working, i have ...
0
votes
1
answer
68
views
Rails app on Docker compose with wireguard VPN, how dows that work?
We have this Wireguard VPN which we use to connect to AWS RDS database and perform some operations there through our rails API: I set the API to run with correct environment variables for the database,...