Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
120 views

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 ...
RaulSamada's user avatar
0 votes
0 answers
41 views

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> <...
Aadhil Ahamed's user avatar
1 vote
0 answers
167 views

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-...
Denis Labelle's user avatar
0 votes
0 answers
81 views

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:...
Eduardo Ramos's user avatar
0 votes
0 answers
21 views

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,...
Nishakaran Pushpa Rajah's user avatar
1 vote
1 answer
95 views

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 = "/...
Dennis's user avatar
  • 301
0 votes
1 answer
67 views

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 ...
user3118887's user avatar
0 votes
0 answers
33 views

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 ...
wendoxx's user avatar
1 vote
1 answer
74 views

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: ...
Michael Bonnet's user avatar
0 votes
0 answers
81 views

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....
Gnana Sai Krishna's user avatar
-1 votes
1 answer
164 views

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 ...
jordan's user avatar
  • 83
0 votes
1 answer
79 views

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 ...
Philip Couling's user avatar
0 votes
1 answer
63 views

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: ...
გენო მუმლაძე's user avatar
0 votes
0 answers
105 views

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 ...
Natalie's user avatar
  • 471
0 votes
1 answer
30 views

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: ...
Michal's user avatar
  • 37
0 votes
0 answers
84 views

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 ...
Raighley's user avatar
1 vote
0 answers
43 views

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 ...
Vishnupriya V's user avatar
0 votes
1 answer
129 views

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-...
Qiulang's user avatar
  • 12.8k
0 votes
0 answers
84 views

azure-ai-translator: container_name: azure-ai-translator image: mcr.microsoft.com/azure-cognitive-services/translator/text-translation:latest environment: - EULA=accept - ...
javi Alvarez's user avatar
1 vote
0 answers
57 views

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 ...
Chinh Trần's user avatar
1 vote
0 answers
128 views

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 ...
GeraniumCat's user avatar
0 votes
2 answers
522 views

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 ...
無名前's user avatar
  • 2,452
0 votes
0 answers
93 views

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

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 ...
Anton's user avatar
  • 135
0 votes
1 answer
68 views

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,...
Roger Peixoto's user avatar

1
3 4
5
6 7
648